There's a Plack::App::FCGIDispatcher that will let you mount an external
FastCGI app as part of a Plack app, and it's possible to run PHP as an
external FastCGI app using php5-fcgi and spawn-fcgi. Maybe not the easiest
thing in the world, but totally doable. Or you could just set up a PHP app
in Apache on a high port and then point a Plack::App::Proxy at that.

On Sat, Aug 27, 2011 at 3:37 AM, Peter Edwards <pe...@dragonstaff.co.uk>wrote:

>
> On 27 August 2011 08:07, Aristotle Pagaltzis <pagalt...@gmx.de> wrote:
>
>> If they all have Plack integration it’s trivially easy, something
>> like
>>
>>    use Plack::Builder;
>>    builder {
>>        mount '/cat'   => $cat_app;
>>        mount '/mouse' => $other_cat_app;
>>        mount '/foo'   => $ledgersmb_app;
>>        mount '/'      => $shinycms_app;
>>    }
>>
>>
> Can you integrate PHP apps with Plack?
>
> Regards, Peter
>
> _______________________________________________
> List: Catalyst@lists.scsys.co.uk
> Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
> Searchable archive:
> http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
> Dev site: http://dev.catalyst.perl.org/
>
>
_______________________________________________
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/

Reply via email to