Vandevliet.AerialShots.Website/.volumes/nginx/conf/conf.d/default.conf
2024-06-21 17:52:29 +02:00

24 lines
No EOL
490 B
Text

server {
listen 80;
listen [::]:80;
server_name localhost;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/public;
index index.html;
ssi on;
try_files $uri $uri/ $uri.html =404;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/public;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}