Differences between revisions 1 and 16 (spanning 15 versions)
Revision 1 as of 2020-01-19 07:21:45
Size: 988
Comment:
Revision 16 as of 2022-09-25 19:03:58
Size: 784
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= FastCGI = = PHP-FPM =
Line 3: Line 3:
'''FastCGI''' is a PHP implementation of the Common Gateway Interface (CGI). It works especially well with NGINX. The PHP '''FastCGI Process Manager''' ('''PHP-FPM''') is an implementation of the [[Protocols/CGI|FastCGI]] specification.

<<TableOfContents>>
Line 9: Line 11:
== Setup Files == == Installation ==
Line 11: Line 13:
Serve `.cgi` sripts from either a dedicated top-level directory (i.e., `/srv`) or from the traditional web content directory (i.e., `/var/www`). The former may be a more attractive option if using jails or separate (often read-only) mounted partitions. PHP-FPM naturally depends on `php(1)`. See [[PHP#Installation|here]] for help with installation, and [[PHP/Configuration|here]] for help with configuration.
Line 13: Line 15:
Write the below to `cgi/test.php`, under whichever directory structure you prefer. Most Linux and BSD distributions will offer a `php-fpm` package.
Line 15: Line 17:
{{{
<?php phpinfo(); ?>
}}}

----



== Install Software ==

At a minimum, we need: php, php-fpm, fcgi, fcgiwrap, and nginx.

Common additional tools include:
 * apache2-utils (a.k.a. apache-tools, httpd-utils, etc.) for creating .htpasswd files for basic restrictions
Official container images are available from the upstream development team. They are tagged like `php:<version>-fpm`
Line 36: Line 25:
=== PHP === As a security measure, the allowable extensions should be set as strictly as possible.
Line 38: Line 27:
=== PHP-FPM ===

=== FastCGI ===

=== NGINX ===
{{{
security.limit_extensions = .php .html .htm
}}}
Line 48: Line 35:
== Startup ==

----



== Maintenance ==
== Usage ==

PHP-FPM

The PHP FastCGI Process Manager (PHP-FPM) is an implementation of the FastCGI specification.


Installation

PHP-FPM naturally depends on php(1). See here for help with installation, and here for help with configuration.

Most Linux and BSD distributions will offer a php-fpm package.

Official container images are available from the upstream development team. They are tagged like php:<version>-fpm


Configuration

As a security measure, the allowable extensions should be set as strictly as possible.

security.limit_extensions = .php .html .htm


Usage


CategoryRicottone

PHP/FPM (last edited 2023-05-25 17:00:50 by DominicRicottone)