Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[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 ssl;
15         server_name         oof;
16         ssl_certificate     /opt/bitnami/nginx/org.onap.oof.crt;
17         ssl_certificate_key /opt/bitnami/nginx/ssl/local/org.onap.oof.key;
18         ssl_protocols       TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
19         ssl_ciphers         HIGH:!aNULL:!MD5;
20
21         location / {
22             include /opt/bitnami/nginx/conf/uwsgi_params;
23             uwsgi_pass conductor_uwsgi;
24
25             uwsgi_param Host $host;
26             uwsgi_param X-Real-IP $remote_addr;
27             uwsgi_param X-Forwarded-For $proxy_add_x_forwarded_for;
28             uwsgi_param X-Forwarded-Proto $http_x_forwarded_proto;
29         }
30     }
31 }