Files
AboutMe/nginx.conf
2026-02-03 03:05:25 +04:00

17 lines
272 B
Nginx Configuration File

server {
listen 8091;
server_name _;
root /usr/share/nginx/html;
index index.html;
location ~ ^([^.\?]*[^/])$ {
return 301 $1/;
}
location / {
try_files $uri $uri/ $uri.html /index.html;
}
error_page 404 /404.html;
}