mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
GitOrigin-RevId: a5ee7654ad41a6cd16b3aa5702288894a433b190
19 lines
271 B
Nginx Configuration File
19 lines
271 B
Nginx Configuration File
server {
|
|
listen 8080;
|
|
|
|
absolute_redirect off;
|
|
|
|
rewrite ^(/.*)\.html(\?.*)?$ $1$2 redirect;
|
|
rewrite ^/(.*)/$ /$1 redirect;
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
location / {
|
|
try_files $uri.html $uri/ $uri =404;
|
|
}
|
|
|
|
location = / {
|
|
return 302 overview;
|
|
}
|
|
}
|