docker-images/nginx/default.conf
ThetaDev 9eb4366a89
All checks were successful
Build and push NGINX image / build (push) Successful in 4m22s
fix: make nginx config files compatible with docker version
2025-06-08 23:51:23 +02:00

9 lines
159 B
Text

server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}