search for: psgi

Displaying 3 results from an estimated 3 matches for "psgi".

Did you mean: pgi
2017 Jun 02
2
more recent perl version?
...n to replace mod_perl with mod_fcgid comes from the RHEL 7 release notes: http://goo.gl/fZxHw9 After sending that message, I remembered that we rejected that option once we found out that when you build your app under Plack, it serves content via a Perl web server using a standard interface called PSGI. That Perl web server normally binds to localhost on a high-numbered TCP port, 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 serve...
2017 Jun 03
0
more recent perl version?
...ace mod_perl with mod_fcgid comes from the RHEL 7 release notes: http://goo.gl/fZxHw9 > > After sending that message, I remembered that we rejected that option once we found out that when you build your app under Plack, it serves content via a Perl web server using a standard interface called PSGI. That Perl web server normally binds to localhost on a high-numbered TCP port, 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 serve...
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