2016-10-18 18:16:38 +03:00
upstream uwsgi {
2016-10-18 21:23:33 +03:00
server localhost:8050;
2016-10-18 18:16:38 +03:00
}
upstream daphne {
2016-10-18 21:23:33 +03:00
server localhost:8051;
2016-10-18 18:16:38 +03:00
}
server {
listen 8013 default_server;
listen 8043 default_server ssl;
# If you have a domain name, this is where to add it
server_name _;
keepalive_timeout 70;
ssl_certificate /etc/nginx/nginx.crt;
ssl_certificate_key /etc/nginx/nginx.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
2016-10-18 21:47:14 +03:00
location /static/ {
root /tower_devel;
2016-10-19 00:27:23 +03:00
try_files /awx/ui/$uri /awx/$uri =404;
2016-10-18 21:47:14 +03:00
access_log off;
2016-10-19 00:21:14 +03:00
sendfile off;
2016-10-18 21:47:14 +03:00
}
2016-10-18 18:16:38 +03:00
location /websocket {
# Pass request to the upstream alias
proxy_pass http://daphne;
# Require http version 1.1 to allow for upgrade requests
proxy_http_version 1.1;
# We want proxy_buffering off for proxying to websockets.
proxy_buffering off;
# http://en.wikipedia.org/wiki/X-Forwarded-For
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# enable this if you use HTTPS:
proxy_set_header X-Forwarded-Proto https;
# pass the Host: header from the client for the sake of redirects
proxy_set_header Host $http_host;
# We've set the Host header, so we don't need Nginx to muddle
# about with redirects
proxy_redirect off;
# Depending on the request value, set the Upgrade and
# connection headers
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
location / {
include /etc/nginx/uwsgi_params;
uwsgi_pass uwsgi;
}
}