diff options
author | krishnaa96 <krishna.moorthy6@wipro.com> | 2020-07-17 19:21:18 +0530 |
---|---|---|
committer | krishnaa96 <krishna.moorthy6@wipro.com> | 2020-07-20 18:46:04 +0530 |
commit | f47fe4275a37b3f55f3288dae881547161be9a5f (patch) | |
tree | 7cedd702894eceeacccb7fffce5be9ef7d6de2a6 /kubernetes/oof/charts/oof-has/resources/config/nginx.conf | |
parent | 50fe3cc33b99d6b66c7667f2505215508250779f (diff) |
[OOF] Move nginx to a sidecar container
Issue-ID: OPTFRA-794
Signed-off-by: krishnaa96 <krishna.moorthy6@wipro.com>
Change-Id: I16547f24ca58a80634ff13a9aeb7a5f595633b44
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; |