Commit 745fb4ee by lizefeng

fix

parent 26f25393
......@@ -720,13 +720,21 @@ http {
}
}
# crm redis mq
server {
listen 8723;
location / {
proxy_pass http://crm-redis.default:6379;
}
}
include servers/*;
}
stream {
# crm redis mq
upstream redis {
server crm-redis.default:8723 max_fails=3 fail_timeout=30s;
}
server {
listen 8723;
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