2024-06-07 20:35:55 +02:00
|
|
|
server {
|
|
|
|
|
listen 80;
|
|
|
|
|
listen [::]:80;
|
|
|
|
|
server_name localhost;
|
|
|
|
|
|
|
|
|
|
#access_log /var/log/nginx/host.access.log main;
|
|
|
|
|
|
2024-06-26 15:57:42 +02:00
|
|
|
root /usr/share/nginx/public;
|
|
|
|
|
|
2024-06-07 20:35:55 +02:00
|
|
|
location / {
|
2024-06-26 15:57:42 +02:00
|
|
|
index index.html;
|
|
|
|
|
ssi on;
|
2025-02-14 11:56:40 +01:00
|
|
|
try_files $uri $uri.html $uri/ /pages$uri /pages$uri.html =404;
|
2024-06-07 20:35:55 +02:00
|
|
|
}
|
|
|
|
|
|
2025-02-14 11:56:40 +01:00
|
|
|
location /pages/ {
|
|
|
|
|
internal;
|
|
|
|
|
ssi on;
|
|
|
|
|
deny all;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location ^~ /includes/ {
|
|
|
|
|
internal;
|
|
|
|
|
ssi on;
|
|
|
|
|
deny all;
|
2024-06-07 20:35:55 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-26 15:57:42 +02:00
|
|
|
error_page 404 /404.html;
|
2024-06-07 20:35:55 +02:00
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
|
|
|
location = /50x.html {
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
}
|
|
|
|
|
}
|