Files
alttpr-frontend/nginx.conf
T
2026-09-25 00:08:30 -05:00

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;
}
}