NewtownGuy
Technical User
I have a problem setting up proxying on apache2. It works fine for graphics in the web pages, so the core mechanism is running, but it is not returning textual values from web pages.
I'm running Ubuntu Server 10.04 and have set up symbolic links from /etc/apache2/mods-enabled to /etc/apache2/mods-available for the following proxy items:
proxy.conf
proxy_load.conf
proxy_http.load
I have the following in /etc/httpd.conf (sanitized):
<Directory /var/ AddHandler application/x-httpd-php .html .php
</Directory>
# only allows clients to contact servers specifically configured:
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /foo_proxy/ ProxyPassReverse /foo_proxy/
I have restarted apache2.
It works ok when I set up a ssh tunnel.
How do I fix this in apache2 ?
Thank you in advance.
--
I'm running Ubuntu Server 10.04 and have set up symbolic links from /etc/apache2/mods-enabled to /etc/apache2/mods-available for the following proxy items:
proxy.conf
proxy_load.conf
proxy_http.load
I have the following in /etc/httpd.conf (sanitized):
<Directory /var/ AddHandler application/x-httpd-php .html .php
</Directory>
# only allows clients to contact servers specifically configured:
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /foo_proxy/ ProxyPassReverse /foo_proxy/
I have restarted apache2.
It works ok when I set up a ssh tunnel.
How do I fix this in apache2 ?
Thank you in advance.
--