Pylons within a web subdirectory

2007-03-30 Thread [EMAIL PROTECTED]
I'd like to be able to set up a copy of my Pylons app within a subdirectory on a server I control. e.g. http://www.example.com/foo -> normal static pages served by Apache http://www.example.com/bar -> root of Pylons app http://www.example.com/bar/controller/action/id I managed to set up Apache to

Re: Pylons within a web subdirectory

2007-03-30 Thread Jose Galvez
Dear Ben you need to use a filter to add the correct proxy to you pylons app. in your app section you add a filter-with = and then you add a filter section: [filter:] egg: = use:PasteDeploy#prefix prefix = /bar Hope this helps Jose [EMAIL PROTECTED] wrote: > I'd like to be able to set up a cop