Vandevliet.AerialShots.Website/.volumes/nginx/conf/conf.d/default.conf
2025-02-14 11:59:36 +01:00

33 lines
No EOL
592 B
Text

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