christianlempa-boilerplates/docker-compose/nginx/config/default.conf

9 lines
123 B
Plaintext
Raw Normal View History

2024-04-24 17:46:23 +02:00
server {
listen 80;
server_name _;
location / {
root /usr/share/nginx/html;
index index.html;
}
}