Commit a1cb1e54 by Administrator

Update nginx.conf

parent 982af33d
......@@ -845,9 +845,20 @@ http {
}
}
include servers/*;
}
# crm-redis
stream {
upstream redis {
server crm-redis.default:6379 max_fails=3 fail_timeout=30s;
}
server {
listen 6379;
proxy_connect_timeout 1s;
proxy_timeout 3s;
proxy_pass redis;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment