Kubernetes/Docker/Dockerfile/Nginx/web.conf

9 lines
117 B
Plaintext
Raw Normal View History

2024-08-07 10:54:39 +00:00
server {
listen 80;
location / {
root /app/www;
index index.html index.htm;
}
}