Announcement

Collapse
No announcement yet.

Apache 2 Reverse Proxy

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Apache 2 Reverse Proxy

    I am trying to get a reverse web proxy working on a Windows 2003 server. I have enabled the mod_proxy and mod_proxy_http. I have added :

    <Proxy *>

    Order deny,allow
    Allow from all

    </Proxy>
    ProxyRequests off
    ProxyPass /http://192.168.1.101 http://192.168.1.101/
    ProxyPassReverse /http://192.168.1.101 http://192.168.1.101/ (addresses changed)

    When I hit the FQDN all I get is the typical "Successful Apache install" page. Anyone have any ideas where I missed something. I've googled the hell outta this and all results give the same info...which I've tried. I've disable QoS in TCP/IP because of known issues with win32 and Apache.
    Oh, so they have internet on computers now!
    -Homer Simpson

  • #2
    Originally posted by guile
    I am trying to get a reverse web proxy working on a Windows 2003 server. I have enabled the mod_proxy and mod_proxy_http. I have added :

    <Proxy *>

    Order deny,allow
    Allow from all

    </Proxy>
    ProxyRequests off
    ProxyPass /http://192.168.1.101 http://192.168.1.101/
    ProxyPassReverse /http://192.168.1.101 http://192.168.1.101/ (addresses changed)

    When I hit the FQDN all I get is the typical "Successful Apache install" page. Anyone have any ideas where I missed something. I've googled the hell outta this and all results give the same info...which I've tried. I've disable QoS in TCP/IP because of known issues with win32 and Apache.

    Hi,

    First, put the Colon : here <Proxy:*> But this isn't the big issue.

    Consider this

    ProxyRequests off
    ProxyPass /absolute/path/to/file http://www.proxy.com/file
    ProxyPassReverse /absolute/path/to/file http://www.proxy.com/file

    Your local server address is http://www.mysite.com

    The above ProxyPass appends and a local request for the <http://www.mysite.org//absolute/path/to/file becomes a proxy request to <http://www.proxy.com/file

    ProxyPassReverse - use same as above. This redirects the server proxy.com.

    I probably fucked this up cause I'm out the door, but go here http://httpd.apache.org/docs/1.3/mod...html#proxypass
    "640k ought to be enough for anybody" - Bill Gates 1981

    Comment


    • #3
      That's straight out of the Apache manual...tried it..didn't work
      Oh, so they have internet on computers now!
      -Homer Simpson

      Comment

      Working...
      X