Files
kubernetes/dev/zos-web/frontend/nginx.conf
T
2026-05-31 16:07:30 +02:00

7 lines
133 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / { try_files $uri $uri/ /index.html; }
}