Home > front end >  Apache2 port forwarding
Apache2 port forwarding

Time:09-23

She has a problem, is my page is access to the IP 127.0.0.1, but the actual is 192.168.80 xx, my apache2 configuration is


ProxyPass/d2 nocanon http://127.0.0.1:50305/d2
ProxyPassReverse/d2 http://127.0.0.1:50305/d2


? My site is http://192.168.80.53/d2/backupd? Is, and then to get IP 127.0.0.1

If I add port when accessing a page http://192.168.80.53:50305/d2/backupd, access to the IP is 192.168.80.53,

Need now is when I visit http://192.168.80.53/d2/backupd, access to the IP is 192.168.80.53

How can you do???????

CodePudding user response:

ProxyPass and address use 192.168.80.53 ProxyPassReverse behind
  • Related