-
Notifications
You must be signed in to change notification settings - Fork 18.9k
Description
Self Checks
- I have read the Contributing Guide and Language Policy.
- This is only for bug report, if you would like to ask a question, please head to Discussions.
- I have searched for existing issues search for existing issues, including closed ones.
- I confirm that I am using English to submit this report, otherwise it will be closed.
- 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)
- Please do not modify this template :) and fill in all the required fields.
Dify version
dify 1.10.1-fix.1
Cloud or Self Hosted
Self Hosted (Docker)
Steps to reproduce
After deploying Dify on Windows 10, the following issues occur when attempting to install some plugins offline:
Signature Verification Error when Installing the Ollama Plugin
Error Message:
PluginDaemonBadRequestError: plugin installation blocked: this plugin claims to be from Langgenius but lacks official signature verification. Set ENFORCE_LANGGENIUS_PLUGIN_SIGNATURES=false to allow installation (not recommended)
The problem persists even after modifying FORCE_VERIFYING_SIGNATURE=false
Plugin Not Displayed After Installing Elasticsearch
Docker container logs indicate successful installation:
stdio.go:173: [INFO] plugin quicksandzn/elasticsearch:0.0.5: Installed tool: elasticsearch
However, after refreshing the Dify page, the plugin does not appear in the list.
Attempted Solutions
Modified the following configurations in the .env file:
Increased timeout settings:
PLUGIN_PYTHON_ENV_INIT_TIMEOUT=1200
PLUGIN_MAX_EXECUTION_TIMEOUT=900Disabled signature verification:
FORCE_VERIFYING_SIGNATURE=falseAdjusted package size limits:
PLUGIN_MAX_PACKAGE_SIZE=524288000
NGINX_CLIENT_MAX_BODY_SIZE=500MConfigured PIP mirror source:
PIP_MIRROR_URL=https://mirrors.aliyun.com/pypi/simple/Restarted the Docker containers and retried the installation, but the issues remain unresolved.
✔️ Expected Behavior
When installing plugins offline, the signature verification should either be bypassed or pass successfully.
After successful plugin installation, the plugins should be displayed normally in the Dify interface.
❌ Actual Behavior
No response