Files
homelab-config/homelab-services/nimh-static/k3s/nginx.yaml
T

18 lines
250 B
YAML
Raw Normal View History

2026-06-20 18:18:01 -05:00
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;
}
}