Displaying 3 results from an estimated 3 matches for "plackperl".
2017 Jun 02
2
more recent perl version?
...ort, so we just stood Apache up in front of it as a reverse proxy. That avoids the security hassles of binding to TCP port 80, and it lets us foist the static content serving load off on Apache, so that the Perl layer serves only dynamic content.
There are many PSGI-aware web servers:
http://plackperl.org/#servers
The default used by Plack is HTTP::Server::Simple, which is probably fast enough for your purposes if CGI remains appropriate for your app.
If you were already trying to get off CGI to make the app faster, many of the alternatives in that list will get you that speed.
The mod_fcgid...
2017 Jun 03
0
more recent perl version?
...ood Apache up in front of it as a reverse proxy. That avoids the security hassles of binding to TCP port 80, and it lets us foist the static content serving load off on Apache, so that the Perl layer serves only dynamic content.
>
> There are many PSGI-aware web servers:
>
> http://plackperl.org/#servers
>
> The default used by Plack is HTTP::Server::Simple, which is probably fast enough for your purposes if CGI remains appropriate for your app.
>
> If you were already trying to get off CGI to make the app faster, many of the alternatives in that list will get you that spee...
2017 May 24
3
more recent perl version?
On May 24, 2017, at 9:38 AM, hw <hw at gc-24.de> wrote:
>
> Warren Young schrieb:
>> On May 24, 2017, at 7:05 AM, hw <hw at gc-24.de> wrote:
>>> apache uses mod_perl
>>
>> mod_perl was dropped from Apache in 2.4, and Red Hat followed suit with RHEL 7.
>
> What is it using instead?
There are various options. We use mod_fcgid + Plack here.
And