feat: Add comprehensive documentation and deployment reports for nginx-mycelium IPv6 hosting

This commit is contained in:
mik-tf
2025-11-05 18:55:29 -05:00
parent 5439d83a5c
commit 8f75fecc50
15 changed files with 1444 additions and 221 deletions

View File

@@ -0,0 +1,24 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-mycelium-config
data:
default.conf: |
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location = /index.html {
expires off;
add_header Cache-Control "no-cache, no-store, must-revalidate";
add_header Pragma "no-cache";
}
}