Update k8s/games/minecraft/deployments.yaml
All checks were successful
Check with kubeconform / lint (push) Successful in 12s

This commit is contained in:
ab
2025-07-09 11:22:55 +00:00
parent fbfbaf0826
commit 01a88e21a2

View File

@@ -22,6 +22,13 @@ data:
server { server {
listen 80; listen 80;
error_page 502 /502.html;
location = /502.html {
internal;
return 200 '<!DOCTYPE html><html><head><meta charset="utf-8"><title>Server Loading</title><style>body{font-family:Arial,sans-serif;text-align:center;margin-top:100px;background:#f0f0f0}h1{color:#333}p{color:#666;font-size:18px}</style></head><body><h1>Server is loading probably...</h1><p>Please wait a moment and try refreshing the page.</p><script>setTimeout(function(){window.location.reload();}, 10000);</script></body></html>';
add_header Content-Type text/html;
}
location / { location / {
proxy_pass http://localhost:8123; proxy_pass http://localhost:8123;
proxy_set_header Host $host; proxy_set_header Host $host;