christianlempa-boilerplates/docker-compose/nginx/config/default.conf
2024-04-24 17:46:23 +02:00

9 lines
123 B
Plaintext

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