use request_uri instead of uri
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
4a33067000
commit
c719c1bb4b
|
@ -22,7 +22,7 @@ http {
|
||||||
server_name ~^(?<subdomain>.+)\.@@TOR_DOMAIN@@$;
|
server_name ~^(?<subdomain>.+)\.@@TOR_DOMAIN@@$;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass https://$subdomain.@@MAIN_DOMAIN@@$uri;
|
proxy_pass https://$subdomain.@@MAIN_DOMAIN@@$request_uri;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ http {
|
||||||
server_name @@TOR_DOMAIN@@;
|
server_name @@TOR_DOMAIN@@;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass https://@@MAIN_DOMAIN@@$uri;
|
proxy_pass https://@@MAIN_DOMAIN@@$request_uri;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue