I read up the Apache docs, the final headache was caused because of a
missing trailing slash at the end of the proxy declarations
For those in the same situation, here is my config ( only for windows)
<VirtualHost *>
ServerName localhost
UseCanonicalName Off
DocumentRoot "c:/xampp/htdocs"
ProxyRequests Off
ProxyPass /css !
ProxyPass /flash !
ProxyPass /img !
ProxyPass /scripts !
ProxyPass /games !
ProxyPass /favicon.ico !
ProxyPass / http://localhost:5000/
ProxyPassReverse / http://localhost:5000/
ErrorLog testsite_error_log
CustomLog testsite_access_log combined
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location /balancer-manager>
SetHandler balancer-manager
Order Deny,Allow
Deny from all
Allow from all
</Location>
</VirtualHost>
Thanks once again!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---