mirror of
https://github.com/StepanovPlaton/AboutMe.git
synced 2026-04-03 20:30:49 +04:00
18 lines
280 B
Nginx Configuration File
18 lines
280 B
Nginx Configuration File
server {
|
|
listen 8091;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location ~ ^([^.\?]*[^/])$ {
|
|
return 301 $1/;
|
|
}
|
|
|
|
# Main location
|
|
location / {
|
|
try_files $uri $uri/ $uri.html;
|
|
}
|
|
|
|
error_page 404 /404.html;
|
|
}
|