diff --git a/nginx.conf b/nginx.conf index 743b02e..e5e0c16 100644 --- a/nginx.conf +++ b/nginx.conf @@ -22,7 +22,7 @@ http { server_name ~^(?.+)\.@@TOR_DOMAIN@@$; 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@@; location / { - proxy_pass https://@@MAIN_DOMAIN@@$uri; + proxy_pass https://@@MAIN_DOMAIN@@$request_uri; } } }