Can i redirect the port to a different IP without the host? I need to access IP:PORT. #477
Replies: 1 comment
-
As I told you in the issue as well. Nope. You can't. ../Frenck |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Can you please tell me how to do the following?
location / {
proxy_pass http://192.168.1.63:9000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
telnet 'MY_PUBLIC_IP' 9000
Beta Was this translation helpful? Give feedback.
All reactions