Re: [Catalyst] Catalyst Hosting

2007-08-12 Thread Matt Rosin
Thank you everyone for your information on hosting companies. (And that new wiki page is cool, though needs comments from people now.) I decided to take a two pronged approach: cheap low priority storage at a shared host plus a fanatical developer-loving vps host. So I signed up at hostgator.com

[Catalyst] Catalyst hosting: the wiki page

2007-08-12 Thread Francesc Romà i Frigolé
Very good Idea! I'm surprised that asmallorange.com is not listed. Two weeks ago I searched this list's archives for the same information and I found at least two people were recommending it over dreamhost as an inexpensive shared provider. I did open an account with them, and I'm happy with

[Catalyst] Serving server-dependent static content

2007-08-12 Thread Peter Lytle
Good afternoon - I am working on a Catalyst application that serves dynamic website content for multiple sites, and I've run into some difficulty about static content. Each website has unique static content (images, css, rss) and I am trying to serve that static content from the site's unique

Re: [Catalyst] Serving server-dependent static content

2007-08-12 Thread Perrin Harkins
On 8/12/07, Peter Lytle [EMAIL PROTECTED] wrote: If someone has a solution from the Apache side, that's fine but I suspect that it might be easier to do this with Catalyst::Plugin::Static::Simple Don't serve static content through perl. Let your webserver do it. Usually people just set up

Re: [Catalyst] Serving server-dependent static content

2007-08-12 Thread Andy Grundman
On Aug 12, 2007, at 2:22 PM, Peter Lytle wrote: Good afternoon - I am working on a Catalyst application that serves dynamic website content for multiple sites, and I've run into some difficulty about static content. Each website has unique static content (images, css, rss) and I am

Re: [Catalyst] Serving server-dependent static content

2007-08-12 Thread mreece
On 8/12/07, Peter Lytle [EMAIL PROTECTED] wrote: If someone has a solution from the Apache side, that's fine but I suspect that it might be easier to do this with Catalyst::Plugin::Static::Simple Don't serve static content through perl. Let your webserver do it. Usually people just set

Re: [Catalyst] Serving server-dependent static content

2007-08-12 Thread Perrin Harkins
On 8/12/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: a lot of times, 'static' content is found via database queries. and sometimes that content needs to be protected from unauthorized viewers, and your authorization mechanisms are already built into your application, so you can't just use