nginx/nginx.conf

14 lines
235 B
Nginx Configuration File
Raw Normal View History

2023-09-11 21:46:34 +10:00
server {
2023-09-11 22:00:23 +10:00
listen 80;
2023-09-11 21:46:34 +10:00
index index.html;
root /usr/share/nginx/html;
location / {
2023-09-11 22:00:23 +10:00
if ($request_uri ~ ^/(.*)\.html) {
return 302 /$1;
}
try_files $uri $uri.html $uri/ =404;
2023-09-11 21:46:34 +10:00
}
}