add internal nginx config

This commit is contained in:
2026-06-20 18:18:09 -05:00
parent a26a3efb24
commit 08789b8566
5 changed files with 27 additions and 8 deletions
@@ -0,0 +1,17 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: nimh-static-nginx
data:
default.conf: |
server {
listen 80;
root /var/nimh-static/site;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}