Files
docker-zulip/includes/zulip-puppet/files/nginx/zulip-include-common/proxy
Alexander Trost bf9f350461 Renamed the zulip folder to zulip-puppet
The entrypoint.sh is now a fully functional setup and run script for zulip installations in docker.
2015-10-06 13:00:31 +02:00

9 lines
346 B
Plaintext

proxy_http_version 1.1;
# Clearing the Connection header is required for keepalives from the load balancer
# http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_next_upstream off;
proxy_redirect off;