Re: [users@httpd] Apache 2 Reverse Proxy

2012-01-02 Thread Damien Hull
Thanks for the info. I got it working. I was missing just what you said On Dec 28, 2011, at 11:44 PM, Øyvind Lode wrote: > Hi: > > You're missing ... and ... to allow > access to the proxied host. > > Try something like this: > > ProxyRequests off > > Order deny,allow > Allow from all > >

RE: [users@httpd] Apache 2 Reverse Proxy

2011-12-29 Thread Øyvind Lode
Hi: You're missing ... and ... to allow access to the proxied host. Try something like this: ProxyRequests off Order deny,allow Allow from all ProxyPass / http://domain:8080/ ProxyPassReverse / http://domain:8080/ Order allow,deny Allow from all -Original Message- From: Damien Hu

RE: [users@httpd] Apache 2 Reverse Proxy

2011-12-28 Thread John Karr
>From a browser on the server (I recommend elinks for a console based one) connect to http://domain.com:8080/. Get your host serving a static page. Then add your proxy statements to replace the static page. Check the logs (/var/log/apache2/ is the ubuntu default) when something isn't working. To