mirror of
https://github.com/solero/wand.git
synced 2024-11-09 15:08:21 +00:00
dc6f3de57b
Add a line to the legacy.nginx.conf file to enable access to the Dash Manager from the legacy domain, in case it is the only domain enabled.
62 lines
1.8 KiB
Plaintext
62 lines
1.8 KiB
Plaintext
server {
|
|
server_name {{ (parseUrl .Env.WEB_LEGACY_PLAY).Host }};
|
|
|
|
{{ if (parseUrl .Env.WEB_LEGACY_PLAY).Path }}
|
|
location {{ (parseUrl .Env.WEB_LEGACY_PLAY).Path }} {
|
|
root /usr/share/nginx/legacy/;
|
|
index index.html index.htm;
|
|
}
|
|
location / {
|
|
root /usr/share/nginx/legacy/{{ (parseUrl .Env.WEB_LEGACY_PLAY).Path }};
|
|
index index.html index.htm;
|
|
}
|
|
location {{ (parseUrl .Env.WEB_LEGACY_MEDIA).Path }} {
|
|
root /usr/share/nginx/legacy/;
|
|
index index.html index.htm;
|
|
}
|
|
location {{ (parseUrl .Env.WEB_LEGACY_PLAY).Path }}/v2 {
|
|
root /usr/share/nginx/legacy/media/;
|
|
}
|
|
{{ else }}
|
|
location / {
|
|
root /usr/share/nginx/legacy/play;
|
|
index index.html index.htm;
|
|
}
|
|
{{ end }}
|
|
|
|
location /create_account/create_account.php {
|
|
proxy_pass http://dash:3000/create/legacy;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
location ~ ^/penguin/activate/(.*) {
|
|
proxy_pass http://dash:3000/activate/legacy/$1;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
location /manager {
|
|
proxy_pass http://dash:3000/manager;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
}
|
|
|
|
server {
|
|
server_name {{ (parseUrl .Env.WEB_LEGACY_MEDIA).Host }};
|
|
|
|
location / {
|
|
root /usr/share/nginx/legacy/media;
|
|
index index.html index.htm;
|
|
}
|
|
|
|
}
|