Kubernetes/Docker/Dockerfile/Nginx/web.conf
offends 7a2f41e7d6
All checks were successful
continuous-integration/drone Build is passing
synchronization
2024-08-07 18:54:39 +08:00

9 lines
117 B
Plaintext

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