Files
kubernetes/Container/Docker/Dockerfile/Nginx/web.conf
2026-01-09 18:07:41 +08:00

9 lines
117 B
Plaintext

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