blob: 1c1094dacb8b3b3a90b1f82b5226dd5ceac2a7fe [file] [log] [blame]
events {
worker_connections 768;
# multi_accept on;
}
http {
# ...
upstream conductor_uwsgi {
server 127.0.0.1:8080;
}
server {
listen 8091;
server_name oof;
location / {
include /opt/bitnami/nginx/conf/uwsgi_params;
uwsgi_pass conductor_uwsgi;
uwsgi_param Host $host;
uwsgi_param X-Real-IP $remote_addr;
uwsgi_param X-Forwarded-For $proxy_add_x_forwarded_for;
uwsgi_param X-Forwarded-Proto $http_x_forwarded_proto;
}
}
}