add redirects support
This commit is contained in:
16
nginx/default.conf
Normal file
16
nginx/default.conf
Normal file
@ -0,0 +1,16 @@
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name localhost;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
|
||||
if ($new_uri != "") {
|
||||
rewrite ^(.*)$ $new_uri permanent;
|
||||
}
|
||||
}
|
||||
|
||||
error_page 404 /404.html;
|
||||
}
|
Reference in New Issue
Block a user