Files
kubernetes/Docker/Dockerfile/Nginx/web.conf
2026-01-09 17:56:38 +08:00

9 lines
117 B
Plaintext

server {
listen 80;
location / {
root /app/www;
index index.html index.htm;
}
}