We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'd like to run a single proxy and have multiple proxy_pass depending on the site address, is that supported?
As I understand, right now the only option that is possible is
site1.ton -> "http://127.0.0.1:80" site2.ton -> "http://127.0.0.1:80"
I want to have routing like
site1.ton -> "http://127.0.0.1:8001" site2.ton -> "http://127.0.0.1:8002"
Is that possible with a single reverse proxy server?
The text was updated successfully, but these errors were encountered:
Hi, you can run nginx or other webserver locally and make additional routing there, reverse proxy supports only one proxy pass
Sorry, something went wrong.
Do I understand correctly that it should turn out something like this?:
E.X: NGINX:
server 1 { listen 8080; server_name site1.ton; ... }
server 2 { listen 8081; server_name site2.ton; ... }
Single server, on 8080, and multiple domain handlers
No branches or pull requests
I'd like to run a single proxy and have multiple proxy_pass depending on the site address, is that supported?
As I understand, right now the only option that is possible is
I want to have routing like
Is that possible with a single reverse proxy server?
The text was updated successfully, but these errors were encountered: