NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
extended to mod_perl (Score:1)
Re:extended to mod_perl (Score:1)
Hmm, that’s a good question. I don’t know, nor am I likely to figure anything out. My own tendency has been to treat mod_perl as something to use specifically for writing Apache modules, but to not use Apache modules as a web app deployment platform.
For that I now prefer an in-process HTTP implementation – in this case, Catalyst::Engine::HTTP::Prefork – along with whatever reverse proxy is most handy. I also don’t bother with highly involved configurations for serving static files, I just use Catalyst::Plugin::Static::Simple (which you’re not supposed to do, according to orthodoxy) and let the reverse proxy take care of serving those files without backend server load. The overall result is a drastic simplification of the deployment process, accompanied by a significant increase in flexibility, with the added bonus that the development system setup differs from the production box only in the absence of a reverse proxy. (And it’s not different to remove that difference – you can set up a reverse proxy on a dev box quite easily if you need to, and you can also probe the app server on the production box without going through the reverse proxy.) Process model wise this setup is very similar to the typical configuration of a slim Apache that serves static files and reverse proxies to a mod_perl-enabled Apache that runs the app, just a lot less heavyweight.
So I have lost almost all of my interest in mod_perl.
Reply to This
Parent
Re: Aristotle's web app deployment model (Score:1)
Re: (Score:1)
All decent dedicated reverse proxies have features on par with mod_rewrite, so it’s not hard to adapt the practice accordingly. However, rather than using such features for everything I have actually come to consider some of that work, esp. redirects, as part of the app itself – f.ex. redirects to support the URI structure of an old version of the app. So I write logic for them in the app using the framework’s features. The reverse proxy is the place for rewrites that concern the integrati
Re: Aristotle's web app deployment model (Thanks) (Score:1)
Thanks, for the reply.
I'm coming to the same conclusion about the benefit of self-contained apps, and having a maximal amount under source control, compared to creating a coupling between app changes and web server configuration.