blob: 1c1094dacb8b3b3a90b1f82b5226dd5ceac2a7fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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;
}
}
}
|