views:

13

answers:

0

I am trying to do reverse proxy with configuration

# directive ifModule mod_proxy.c
ProxyRequests On

directive Proxy *

    Order deny,allow
#    Deny from all
    Allow from all
directive /Proxy

ProxyPass        / http://localhost:8080/mysocial

ProxyPassReverse / http://localhost:8080/mysocial


ProxyVia On



directive IfModule mod_disk_cache.c

   CacheEnable disk /

   CacheRoot "/var/cache/mod_proxy"
directive /IfModule

directive /IfModule

But when I try to access http://domainname.com I am getting following error on browser ...

The page isn't redirecting properly Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

Any help is highly appreciated

related questions