"kerinin" <[EMAIL PROTECTED]> writes:
> I'm proxying it:
This looks more like mod_rewrite than mod_proxy to me...
> RewriteEngine on
This is for mod_rewrite only.
> RewriteMap escape int:escape
> #RewriteRule ^/static/(.*)
> /var/www/bcstudio/bcstudio/static/${escape:$1} [L]
>
> RewriteCond %{REQUEST_URI} !autostart
> RewriteRule ^(.*) http://bcmail.dnsalias.net:8080/${escape:$1}
> [P]
If you wanted mod_proxy:
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
This will proxy all accesses to "/" to localhost:8080. This is documented at
the wiki.
--
Jorge Godoy <[EMAIL PROTECTED]>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" 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/turbogears
-~----------~----~----~----~------~----~------~--~---