-
Notifications
You must be signed in to change notification settings - Fork 3k
Pass the request to another reverse proxy server #472
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
Comments
Try setting these in the advanced config:
|
It does not work, also it says on advance config page:
|
@geek-baba Did you find any solutions for this? I'm currently struggling to achieve the almost the same. Also found this issue #286 which seems to cover the same topic. |
I had to separate the this proxy and k8s cluster to point to 2 different static IP's |
i solved this problem by this way : https://stackoverflow.com/questions/37523615/dynamic-proxy-pass-in-nginx-to-another-pod-in-kubernetes After much research and trial and error I managed to solve this. First I changed the pod specification to: spec: location ~ ^/(.+)$ { |
Issue is now considered stale. If you want to keep it open, please comment 👍 |
Issue was closed due to inactivity. |
This is working great for most use cases I have except when I am trying to redirect to another proxy service running on my Kubernetes cluster. The K8s cluster is running nginx ingress (proxy) and it should route to specific app based on the domain name. However looks like when I am passing it via nginx proxy manager to my k8s cluster, the url/domain name is not passed to it.
So in simplest terms I want to pass domain name from one nginx server to another for further processing, is this something possible?
The text was updated successfully, but these errors were encountered: