1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-30 22:21:13 +03:00

Merge pull request #1575 from aperigault/fix_nginx_upstreams

Fix nginx upstreams
This commit is contained in:
Ryan Petrello 2018-03-16 14:53:48 -04:00 committed by GitHub
commit a1f15362ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,11 +26,11 @@ http {
#gzip on;
upstream uwsgi {
server localhost:8050;
server 127.0.0.1:8050;
}
upstream daphne {
server localhost:8051;
server 127.0.0.1:8051;
}
server {