Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / oof / components / oof-has / resources / config / nginx.conf
1 events {
2         worker_connections 768;
3         # multi_accept on;
4 }
5
6 http {
7     # ...
8     upstream conductor_uwsgi {
9        server 127.0.0.1:8080;
10     }
11
12     server {
13
14         listen              8091;
15         server_name         oof;
16
17         location / {
18             include /opt/bitnami/nginx/conf/uwsgi_params;
19             uwsgi_pass conductor_uwsgi;
20
21             uwsgi_param Host $host;
22             uwsgi_param X-Real-IP $remote_addr;
23             uwsgi_param X-Forwarded-For $proxy_add_x_forwarded_for;
24             uwsgi_param X-Forwarded-Proto $http_x_forwarded_proto;
25         }
26     }
27 }