Files
docker-zulip/includes/zulip-puppet/files/nginx/zulip-include-frontend/upstreams
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

13 lines
201 B
Plaintext

upstream django {
server unix:/home/zulip/deployments/fastcgi-socket;
}
upstream tornado {
server localhost:9993;
keepalive 10000;
}
upstream localhost_sso {
server localhost:8888;
}