You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I confirm that I am using English to submit this report (我已阅读并同意 Language Policy).
[FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)
Please do not modify this template :) and fill in all the required fields.
1. Is this request related to a challenge you're experiencing? Tell me about your story.
I am trying to deploy dify & ragflow at the same time via docker but no luck. I have config the .env file in dify as follow:
Environment Variables for Nginx reverse proxy
NGINX_SERVER_NAME=_
NGINX_HTTPS_ENABLED=false
HTTP port
NGINX_PORT=90
SSL settings are only applied when HTTPS_ENABLED is true
NGINX_SSL_PORT=445
if HTTPS_ENABLED is true, you're required to add your own SSL certificates/keys to the ./nginx/ssl directory and modify the env vars below accordingly.
NGINX_SSL_CERT_FILENAME=dify.crt
NGINX_SSL_CERT_KEY_FILENAME=dify.key
NGINX_SSL_PROTOCOLS=TLSv1.1 TLSv1.2 TLSv1.3
Nginx performance tuning
NGINX_WORKER_PROCESSES=auto
NGINX_CLIENT_MAX_BODY_SIZE=15M
NGINX_KEEPALIVE_TIMEOUT=65
Proxy settings
NGINX_PROXY_READ_TIMEOUT=3600s
NGINX_PROXY_SEND_TIMEOUT=3600s
Set true to accept requests for /.well-known/acme-challenge/
NGINX_ENABLE_CERTBOT_CHALLENGE=false
Docker Compose Service Expose Host Port Configurations
EXPOSE_NGINX_PORT=90
EXPOSE_NGINX_SSL_PORT=445
Redis Configuration
This Redis configuration is used for caching and for pub/sub during conversation.
REDIS_HOST=redis
REDIS_PORT=6380
REDIS_USERNAME=
REDIS_PASSWORD=difyai123456
REDIS_USE_SSL=false
REDIS_DB=0
Here is my docker status:
It doesn't seems the redis is correctly config, and the dify-api is keep restarting.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Self Checks
1. Is this request related to a challenge you're experiencing? Tell me about your story.
I am trying to deploy dify & ragflow at the same time via docker but no luck. I have config the .env file in dify as follow:
Environment Variables for Nginx reverse proxy
NGINX_SERVER_NAME=_
NGINX_HTTPS_ENABLED=false
HTTP port
NGINX_PORT=90
SSL settings are only applied when HTTPS_ENABLED is true
NGINX_SSL_PORT=445
if HTTPS_ENABLED is true, you're required to add your own SSL certificates/keys to the
./nginx/ssl
directory and modify the env vars below accordingly.NGINX_SSL_CERT_FILENAME=dify.crt
NGINX_SSL_CERT_KEY_FILENAME=dify.key
NGINX_SSL_PROTOCOLS=TLSv1.1 TLSv1.2 TLSv1.3
Nginx performance tuning
NGINX_WORKER_PROCESSES=auto
NGINX_CLIENT_MAX_BODY_SIZE=15M
NGINX_KEEPALIVE_TIMEOUT=65
Proxy settings
NGINX_PROXY_READ_TIMEOUT=3600s
NGINX_PROXY_SEND_TIMEOUT=3600s
Set true to accept requests for /.well-known/acme-challenge/
NGINX_ENABLE_CERTBOT_CHALLENGE=false
Docker Compose Service Expose Host Port Configurations
EXPOSE_NGINX_PORT=90
EXPOSE_NGINX_SSL_PORT=445
Redis Configuration
This Redis configuration is used for caching and for pub/sub during conversation.
REDIS_HOST=redis
REDIS_PORT=6380
REDIS_USERNAME=
REDIS_PASSWORD=difyai123456
REDIS_USE_SSL=false
REDIS_DB=0
Here is my docker status:
It doesn't seems the redis is correctly config, and the dify-api is keep restarting.
2. Additional context or comments
No response
Beta Was this translation helpful? Give feedback.
All reactions