From f543a38d410caf1f912142e83cdece1d83002fa5 Mon Sep 17 00:00:00 2001 From: Marcel Zapf Date: Thu, 11 Jan 2024 17:11:36 +0000 Subject: [PATCH] test nginx config --- helm/templates/nginx-vhostconfigs-configmap.yaml.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/helm/templates/nginx-vhostconfigs-configmap.yaml.yaml b/helm/templates/nginx-vhostconfigs-configmap.yaml.yaml index 0616207..57622ff 100644 --- a/helm/templates/nginx-vhostconfigs-configmap.yaml.yaml +++ b/helm/templates/nginx-vhostconfigs-configmap.yaml.yaml @@ -12,9 +12,15 @@ data: #access_log /var/log/nginx/host.access.log main; + location /examples { + root /usr/share/nginx/html; + #index index.html index.htm; + autoindex on; + } + location / { root /usr/share/nginx/html; - index index.html index.htm; + #index index.html index.htm; autoindex on; }