mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-05-01 10:16:52 -05:00
28 lines
662 B
Plaintext
28 lines
662 B
Plaintext
server {
|
|
listen 80 default_server;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
# Force browsers to check for updated data
|
|
location /data/ {
|
|
add_header Cache-Control no-cache;
|
|
add_header Access-Control-Allow-Origin *;
|
|
autoindex on;
|
|
}
|
|
|
|
# Gear redirect
|
|
location ~ /nso/g/(.*) {
|
|
return 302 https://s.nintendo.com/av5ja-lp1/znca/game/4834290508791808?p=/gesotown/$1;
|
|
}
|
|
|
|
# Festival redirect
|
|
location ~ /nso/f/(.*) {
|
|
return 302 https://s.nintendo.com/av5ja-lp1/znca/game/4834290508791808?p=/fest_record/$1;
|
|
}
|
|
}
|