diff --git a/changelog.d/1-api-changes/add-mls-public-keys-to-nginz b/changelog.d/1-api-changes/add-mls-public-keys-to-nginz new file mode 100644 index 0000000000..67c245c7d7 --- /dev/null +++ b/changelog.d/1-api-changes/add-mls-public-keys-to-nginz @@ -0,0 +1 @@ +Add /mls/public-keys to nginz chart diff --git a/charts/nginz/values.yaml b/charts/nginz/values.yaml index 3cd3e6d2b5..0d760702f9 100644 --- a/charts/nginz/values.yaml +++ b/charts/nginz/values.yaml @@ -476,6 +476,9 @@ nginx_conf: - path: /mls/messages envs: - all + - path: /mls/public-keys + envs: + - all - path: /nonce/clients envs: - all diff --git a/deploy/services-demo/conf/nginz/nginx.conf b/deploy/services-demo/conf/nginz/nginx.conf index 36ae5cd902..ca1e9041ba 100644 --- a/deploy/services-demo/conf/nginz/nginx.conf +++ b/deploy/services-demo/conf/nginz/nginx.conf @@ -421,6 +421,11 @@ http { proxy_pass http://galley; } + location /mls/public-keys { + include common_response_with_zauth.conf; + proxy_pass http://galley; + } + # Gundeck Endpoints rewrite ^/api-docs/push /push/api-docs?base_url=http://127.0.0.1:8080/ break;