20 lines
351 B
Nginx Configuration File
20 lines
351 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name localhost;
|
|
|
|
location ~ ^/(\w\w/)?(h|m|named)/ {
|
|
return 301 http://alttpr-legacy.gwaa.kiwi$request_uri;
|
|
}
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location = /50x.html {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
}
|