Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: also redirect serverlisting pages to their own subdomain #24

Merged
merged 1 commit into from Jan 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions nginx.default.conf
Expand Up @@ -46,6 +46,9 @@ server {
location ~ ^/\w\w/bananas(.*)$ { return 301 https://bananas.openttd.org/en$1; }
# Account pages that weren't done on the subdomain
location ~ ^/\w\w/account(.*)$ { return 301 https://account.openttd.org/en$1; }
# Serverlist pages that weren't done on the subdomain
location ~ ^/\w\w/servers$ { return 301 https://servers.openttd.org/en/; }
location ~ ^/\w\w/server/(.*)$ { return 301 https://servers.openttd.org/en/server/$1; }

# Download pages with specific version
location ~ ^/\w\w/download-stable/(.*)$ { return 301 $scheme://$http_host/downloads/openttd-releases/$1.html; }
Expand Down