Differences between revisions 7 and 8
Revision 7 as of 2022-09-25 19:03:34
Size: 2197
Comment:
Revision 8 as of 2022-09-25 19:22:09
Size: 2715
Comment:
Deletions are marked like this. Additions are marked like this.
Line 70: Line 70:
'''`fcgiwrap(8)`''' is a simple wrapper script that simplifies the configuration and administration of a FastCGI server. '''`fcgiwrap(8)`''' is a simple wrapper script that simplifies the configuration and administration of a FastCGI server. See [[Fcgiwrap|here]] for help in configuring that server.

`nginx(8)` just needs to be configured to proxy requests.
Line 84: Line 86:
----



== Spawn-fcgi ==

'''`spawn-fcgi(1)`''' is a wrapper around the `fcgiwrap(8)` wrapper script. It comes from the [[Lighttpd]] project.

No configuration is necessary, just run the script like:

{{{
spawn-fcgi -n -u www-data -p 9000 -- /usr/bin/fcgiwrap -f
}}}

Or create a [[Linux/Systemd|service file]] to automate this.

Use the same `nginx(8)` configuration as above.

NGINX FastCGI

Unlike other web servers, nginx(8) does not offer a built-in FastCGI implementation.


PHP-FPM

First install and configure PHP-FPM.

nginx(8) just needs to be configured to proxy requests.

location ~ \.php(/|$) {
    fastcgi_split_path_info ^(.+?\.php)(/.*)$;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param PATH_INFO       $fastcgi_path_info;
    try_files $uri =404;

    fastcgi_pass localhost:9000;
    include fastcgi_params;
}

To use a Unix socket to pass requests, try fastcgi_pass unix:/run/php-fpm/php-fpm.sock;.

Hardening

A common tactic for hardening a FastCGI program is to run php-fpm(8) in a different working directory.

This can lead to issues with the try_files directive, which checks for the existence of a file before responding to a request. On success it overwrites the $uri variable with the local URI. This is a mitigation for embedded PHP attacks.

A workaround is to create empty files in the web root to satisfy try_files.

location ~ \.php(/|$) {
    fastcgi_split_path_info ^(.+?\.php)(/.*)$;
    fastcgi_param SCRIPT_FILENAME /path/to/php/working/directory/$fastcgi_script_name;
    fastcgi_param PATH_INFO       $fastcgi_path_info;
    try_files $uri =404;

    fastcgi_pass localhost:9000;
    include fastcgi_params;
}

Alternatively, replace try_files with a custom instruction.

location ~ \.php(/|$) {
    fastcgi_split_path_info ^(.+?\.php)(/.*)$;
    if (!-f $document_root$fastcgi_script_name) {
      return 404;
    }
}


Fcgiwrap

fcgiwrap(8) is a simple wrapper script that simplifies the configuration and administration of a FastCGI server. See here for help in configuring that server.

nginx(8) just needs to be configured to proxy requests.

location ~ \.php(/|$) {
    fastcgi_param DOCUMENT_ROOT /var/www/cgi-bin/;
    fastcgi_param SCRIPT_NAME   myapp.php;

    fastcgi_pass unix:/run/fcgiwrap.sock;
    include fcgiwrap_params;
}

See here for some details on the configuration.


Spawn-fcgi

spawn-fcgi(1) is a wrapper around the fcgiwrap(8) wrapper script. It comes from the Lighttpd project.

No configuration is necessary, just run the script like:

spawn-fcgi -n -u www-data -p 9000 -- /usr/bin/fcgiwrap -f

Or create a service file to automate this.

Use the same nginx(8) configuration as above.


CategoryRicottone

Nginx/FastCGI (last edited 2023-04-22 20:41:45 by DominicRicottone)