Install and Configure FastCGI and PHP-FPM on Debian 10
Updated by Linode Contributed by Linode
mod_fcgid
is an Apache module that uses the FastCGI protocol to provide an interface between Apache and Common Gateway Interface (CGI) programs. CGI helps a web server handle dynamic content generation and processing for scripting languages like PHP. This dynamic functionality is commonly used when running content management systems like WordPress on a LAMP stack.
This guide will show you how to install mod_fcgid
and PHP-FPM
on Debian 10. It will also provide a basic configuration that uses socket based connections, instead of TCP. These steps will enable you to run PHP through mod_fcgid
. Running PHP through mod_fcgid
helps to reduce the amount of system resources used by forcing the web server to act as a proxy and only pass files ending with the .php file extension to PHP-FPM. Additionally, using PHP-FPM allows each virtual host to be configured to run PHP code as individual users.
This guide assumes that you are familiar and comfortable with setting up a LAMP stack on Debian 10. If you are new to Linux server administration, you may be interested in reading our Linux System Administration Basics guide.
Before You Begin
Complete the steps in the How to Install a LAMP Stack on Debian 10 guide. After completing the LAMP stack guide, you should have an Apache virtual hosts configuration for your own website. This guide will continue to refer to the site as
example.com
.Note
This guide’s examples will use PHP version 7.3. When running commands related to PHP, ensure you replace any version numbers with your own system’s PHP version.
Install mod_fcgid and PHP-FPM
In this section, you will install the mod_fcgid
and PHP-FPM
modules on your Debian 10 Linode.
Update your system’s Apt repositories.
sudo apt-get update && sudo apt-get upgrade --show-upgraded
Install
mod_fcgid
,PHP-FPM
, andhtop
. You will need the htop command line utility in a later section of this guide.sudo apt-get install libapache2-mod-fcgid php-fpm htop
Load the
mod_proxy
andmod_proxy_fcgi
modules by editing your main Apache configuration to add the lines included in the example. Both these modules are included by default in your Apache installation, but the must be explicitly loaded in order to use them. You will need these modules to proxy requests throughmod_fcgid
to your socket.- /etc/apache2/apache2.conf
-
1 2 3
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so LoadModule proxy_fcgi_module /usr/lib/apache2/modules/mod_proxy_fcgi.so
Verify that the configuration is correct:
sudo apache2ctl configtest
Restart the Apache web server:
sudo systemctl restart apache2
Configure Apache with PHP-FPM
You will now configure Apache to pass all requests for files with the .php extension to the PHP wrapper through FastCGI.
Configure
PHP-FPM
to use UNIX sockets instead of TCP. In this command, you will usegrep
to determine if the sockets are already being used. This command will search yourphp-fpm
installation’s default pool configuration file for the setting:sudo grep -E '^\s*listen\s*=\s*[a-zA-Z/]+' /etc/php/7.3/fpm/pool.d/www.conf
You should see the example output.
listen = /run/php/php7.3-fpm.sock
If no output is returned, you will need to edit your PHP pool configuration file by adding a
listen
setting with the address on which to accept FastCGI requests. Add the line in the example file.- /etc/php/7.3/fpm/pool.d/www.conf
-
1 2
listen = /var/run/php/php7.3-fpm.sock
If the
listen = 127.0.0.1:9000
is not already uncommented, do so now.- /etc/php/7.3/fpm/pool.d/www.conf
-
1 2
listen = 127.0.0.1:9000
Restart the
php-fpm
daemon for these changes to take effect.sudo systemctl restart php7.3-fpm
With the text editor of your choice, update your default Apache configuration file with the following basic settings for
mod_fcgid
. You may consider changing these settings based on your own needs.- /etc/apache2/apache2.conf
-
1 2 3 4 5 6
AddHandler fcgid-script .fcgi .php .fpl FcgidConnectTimeout 20 FcgidMaxRequestLen 268435456 FcgidMaxProcessesPerClass 10 FcgidIOTimeout 300
Check for configuration errors.
sudo apache2ctl configtest
Edit your FastCGI module’s configuration file to add the settings in the example file. Some of the example settings may already be included in your configuration. Add the missing settings.
- /etc/apache2/mods-available/fcgid.conf
-
1 2 3 4 5 6 7 8 9
<IfModule mod_fcgid.c> FcgidConnectTimeout 20 AddType application/x-httpd-php .php AddHandler application/x-httpd-php .php Alias /php7-fcgi /usr/lib/cgi-bin/php7-fcgi <IfModule mod_mime.c> AddHandler fcgid-script .fcgi </IfModule> </IfModule>
Check for configuration errors.
sudo apache2ctl configtest
If you received Syntax OK for steps 6 and 8, restart the Apache service:
sudo systemctl restart apache2
Check if PHP is working by creating and accessing a page with
phpinfo()
displayed. The following command will create a new fileinfo.php
in/var/www/example.com/html/public_html/info.php
. Replaceexample.com
with your own domain’s root directory name.sudo echo "<?php phpinfo(); ?>" > /var/www/html/example.com/public_html/info.php
Navigate to
www.example.com/info.php
to view your system’s information.
Configuring PHP Pools
PHP-FPM brings in the concept of pools. With pools, PHP-FPM can create and manage a pool of PHP processes to run PHP files from a site’s root directory. Each pool that is run by PHP-FPM can be run with separate user and group ID’s. Pools are a great way to provide more security when you are running multiple sites on one server. Running your site’s PHP scripts using dedicated user and group IDs, means that no one user can execute scripts on all sites running on your Linode. In this section you will create a pool for the domain example.com
which is owned by the user bob.
NoteTo create the example bob user, you can follow the steps outlined in our Securing Your Server guide.
Create a copy of your original pool file to use as the foundation for your
example.com
pool configuration.sudo cp /etc/php/7.3/fpm/pool.d/www.conf /etc/php/7.3/fpm/pool.d/example.com.conf
Edit the file to change the socket name, user and group, and socket listen address. Ensure that the listen address is different from the listen address that you set in the main PHP pool configuration file. You can append the name of your site as part of the file name, for example,
listen = /var/run/php/php7.3-fpm_example.com.sock
. Also, ensure that you comment out or replace any existinguser
andgroup
and add your ownuser
andgroup
settings as shown in the example.- /etc/php/7.3/fpm/pool.d/example.com.conf
-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
; Start a new pool named 'www'. ; the variable $pool can be used in any directive and will be replaced by the ; pool name ('www' here) [example.com] ... ; Unix user/group of processes ; Note: The user is mandatory. If the group is not set, the default user's group ; will be used. user = bob group = bob ... listen = /var/run/php/php7.3-fpm_example.com.sock
Restart the
php7.3-fpm
process for the new pool to be created.sudo systemctl restart php7.3-fpm
Edit the virtual host file of
example.com
to use your new PHP-FPM pool. Depending on your current virtual hosts file what you need to add and edit may differ. The<IfModuel mod_fcgid.c>
directive and its contents is what you should add to your file. Ensure you replace any instance ofexample.com
with your own domain name.- /etc/apache2/sites-available/example.com.conf
-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<Directory /var/www/html/example.com/public_html> Require all granted </Directory> <VirtualHost *:80> ServerAdmin webmaster@example.com ServerName example.com ServerAlias www.example.com DocumentRoot /var/www/html/example.com/public_html ErrorLog /var/www/html/example.com/logs/error.log CustomLog /var/www/html/example.com/logs/access.log combined DirectoryIndex index.php <IfModule mod_fcgid.c> Options +ExecCGI FcgidConnectTimeout 20 AddType application/x-httpd-php .php AddHandler application/x-httpd-php .php Alias /php7-fcgi /usr/lib/cgi-bin/php7-fcgi ProxyPassMatch " ^/(.*\.php(/.*)?)$" "unix:listen = /var/run/php/php7.3-fpm_example.com.sock|fcgi://localhost/var/www/html/example.com/public_html/" </IfModule> </VirtualHost>
Check the configuration file for errors.
sudo apache2ctl configtest
If there were no errors, restart Apache.
sudo systemctl restart apache2
Use the command line tool, htop, to verify that PHP-FPM is running the
example.com
pool as thebob
user and group. Replacebob
with the user that you defined in your pool configuration file.top -c -u bob
Your output should display
bob
as the user corresponding to the command that started the listed processphp-fpm: pool example.com
.PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 21720 bob 20 0 199276 8944 3376 S 0.0 0.2 0:00.00 php-fpm: pool example.com 21721 bob 20 0 199276 8944 3376 S 0.0 0.2 0:00.00 php-fpm: pool example.com
Join our Community
Find answers, ask questions, and help others.
This guide is published under a CC BY-ND 4.0 license.