diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2019-11-07 15:25:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-07 15:25:18 +0000 |
commit | 5bdb14011023be31471622a92b98493a04da0281 (patch) | |
tree | 54664c104152f847481c209f62f2ffcc09219bdf /kubernetes | |
parent | f1b86032285298313a0cf071ae02d60e2b4c2188 (diff) | |
parent | 60589997611a737190d75d81d562f5c2aa2bdfc8 (diff) |
Merge "Fix the nginx config"
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/clamp/resources/config/nginx.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kubernetes/clamp/resources/config/nginx.conf b/kubernetes/clamp/resources/config/nginx.conf index ce94eff70f..da7978ad01 100644 --- a/kubernetes/clamp/resources/config/nginx.conf +++ b/kubernetes/clamp/resources/config/nginx.conf @@ -4,8 +4,10 @@ server { ssl_protocols TLSv1.2; ssl_certificate /etc/ssl/clamp.pem; ssl_certificate_key /etc/ssl/clamp.key; + ssl_verify_client optional_no_ca; location /restservices/clds/ { proxy_pass https://clamp-backend:443; + proxy_set_header X-SSL-Cert $ssl_client_escaped_cert; } location / { |