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

9 lines
115 B
Plaintext
Raw Normal View History

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