X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=kubernetes%2Foof%2Fcomponents%2Foof-has%2Fresources%2Fconfig%2Fnginx.conf;fp=kubernetes%2Foof%2Fcomponents%2Foof-has%2Fresources%2Fconfig%2Fnginx.conf;h=a6790164d8b7ac62f83674e0a681e2aaa12a40dc;hb=dbcd1cacf9d08b2d17b569736effb389c6f99d13;hp=0000000000000000000000000000000000000000;hpb=27aae18cdee00c873e3617a6a3b5fb2d294b9b98;p=oom.git diff --git a/kubernetes/oof/components/oof-has/resources/config/nginx.conf b/kubernetes/oof/components/oof-has/resources/config/nginx.conf new file mode 100644 index 0000000000..a6790164d8 --- /dev/null +++ b/kubernetes/oof/components/oof-has/resources/config/nginx.conf @@ -0,0 +1,31 @@ +events { + worker_connections 768; + # multi_accept on; +} + +http { + # ... + upstream conductor_uwsgi { + server 127.0.0.1:8080; + } + + server { + + listen 8091 ssl; + server_name oof; + ssl_certificate /opt/bitnami/nginx/ssl/local/org.onap.oof.crt; + ssl_certificate_key /opt/bitnami/nginx/ssl/local/org.onap.oof.key; + ssl_protocols TLSv1 TLSv1.1 TLSv1.2; + ssl_ciphers HIGH:!aNULL:!MD5; + + 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; + } + } +}