Files
Kubernetes/Docker/Dockerfile/Nginx/web.conf
offends 8a87b699ba
All checks were successful
continuous-integration/drone Build is passing
first commit
2025-12-13 18:06:23 +08:00

9 lines
117 B
Plaintext

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