Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Re: 502 Bad Gateway Error with ModPerl scripts

by thunders (Priest)
on Sep 29, 2003 at 15:34 UTC ( [id://294995]=note: print w/replies, xml ) Need Help??


in reply to Re: 502 Bad Gateway Error with ModPerl scripts
in thread 502 Bad Gateway Error with ModPerl scripts

That's my plan for external requests, but then it wouldn't work right for internal stuff. I'm not sure if I can tell apache to use a different rule for requests coming from 192.168.0.* I'm sure there's a way.
  • Comment on Re: Re: 502 Bad Gateway Error with ModPerl scripts

Replies are listed 'Best First'.
Re: Re: Re: 502 Bad Gateway Error with ModPerl scripts
by sgifford (Prior) on Sep 29, 2003 at 16:27 UTC

    If you're proxying requests, your Web server will be making the connection, so the hostname needs to be something your Web server can connect to. It could be as simple as hardcoding in 127.0.0.1.

    My suspicion is that when you're browsing internally, you're doing something like http://192.168.1.1, so when Apache rewrites the address to proxy, it connects to 192.168.1.1. When you're coming from the outside, you're visiting http://www.example.com. Apache rewrites the address, tries to connect to www.example.com, gets the IP address of the public side of the NAT, and can't connect to it. If that's the case, another solution is split horizon DNS, so that inside your network www.example.com resolves to 192.168.1.1, while outside it resolves to your external NAT address.

      Thanks for the tip. Changing the %{HTTP_HOST} part to the loopback address 127.0.0.1, seems to do the right thing in both cases.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://294995]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (5)
As of 2024-04-19 14:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found