nginx-docker/data/sites/default.conf

12 lines
214 B
Text
Raw Normal View History

2024-04-02 19:05:27 +02:00
server {
listen 80;
2024-04-02 19:05:27 +02:00
root /var/www/html;
index index.html;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
}