diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-07-22 10:44:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-07-22 10:44:06 +0000 |
commit | 68971c446a8f7dc2b0a9a39f354bd329c67fab9f (patch) | |
tree | b987fc673a19a13d8eec9d3b7299f89523252b6e /kubernetes/oof/charts/oof-has/resources/config/nginx.conf | |
parent | d9e156401cbea828b10ffea72722a6f68d8591f0 (diff) | |
parent | f47fe4275a37b3f55f3288dae881547161be9a5f (diff) |
Merge "[OOF] Move nginx to a sidecar container"
Diffstat (limited to 'kubernetes/oof/charts/oof-has/resources/config/nginx.conf')
-rw-r--r-- | kubernetes/oof/charts/oof-has/resources/config/nginx.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kubernetes/oof/charts/oof-has/resources/config/nginx.conf b/kubernetes/oof/charts/oof-has/resources/config/nginx.conf index f2172b2793..7b5c3a504c 100644 --- a/kubernetes/oof/charts/oof-has/resources/config/nginx.conf +++ b/kubernetes/oof/charts/oof-has/resources/config/nginx.conf @@ -13,13 +13,13 @@ http { listen 8091 ssl; server_name oof; - ssl_certificate /etc/nginx/ssl/org.onap.oof.crt; - ssl_certificate_key /etc/nginx/ssl/org.onap.oof.key; + ssl_certificate /opt/bitnami/nginx/ssl/org.onap.oof.crt; + ssl_certificate_key /opt/bitnami/nginx/ssl/org.onap.oof.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; location / { - include /etc/nginx/uwsgi_params; + include /opt/bitnami/nginx/conf/uwsgi_params; uwsgi_pass conductor_uwsgi; uwsgi_param Host $host; |