I am not clear with ProxyPassReverseCookieDomain and ProxyPassReverseCookiePath I checked this page http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypassreverse but I am not able to understand it I am having 8 websites running on a machine one of them is not getting connected via internet
My virtual host configuration is as follows I want to use ProxyPassReverseCookieDomain 2 websites are not working while rest are working in this setup is it some how possible to make it I am totally confused <VirtualHost *:80> ServerAdmin webmas...@localhost ServerName mydomain.com ProxyRequests off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPreserveHost On ProxyPass /something1 http://192.168.1.5/something1 ProxyPassReverse /something1 http://192.168.1.5/something1 ProxyPass /something2 http://192.168.1.5/something2/www/ ProxyPassReverse /something2 http://192.168.1.5/something2/www/ ProxyPass /something3 http://192.168.1.5/something3/ ProxyPassReverse /something3 http://192.168.1.5/something3/ ProxyPass /something4 http://192.168.1.5/something4/ ProxyPassReverse /something4 http://192.168.1.5/something4/ ProxyPass /something5 http://192.168.1.5/something5 ProxyPassReverse /something5 http://192.168.1.5/something5 ProxyPass /something6 http://192.168.1.5:8080/something6 ProxyPassReverse /something6 http://192.168.1.5:8080/something6 ProxyPass /something7 http://192.168.1.5:6060/portal ProxyPassReverse /something7 http://192.168.1.5:6060/portal ProxyPass / http://192.168.1.5/ ProxyPassReverse / http://192.168.1.5/ ErrorLog /var/log/apache2/mydomain_error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel debug CustomLog /var/log/apache2/mydomain_access.log combined CustomLog /var/log/apache2/mydomain-resp_log resp LogFormat "%D %{X-Forwarded-For}i %t" resp </VirtualHost> -- Tapas --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org " from the digest: users-digest-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org