Difference between revisions of "FastCGI"
Jump to navigation
Jump to search
(One intermediate revision by one other user not shown) | |||
Line 28: | Line 28: | ||
* [[UWSGI]] | * [[UWSGI]] | ||
* <code>[[systemctl status php7.2-fpm]]</code> | * <code>[[systemctl status php7.2-fpm]]</code> | ||
+ | * <code>[[php-fpm]]</code> | ||
== See also == | == See also == |
Latest revision as of 13:59, 23 March 2023
One of the main use-cases of FastCGI proxying within Nginx is for PHP processing. Unlike Apache, which can handle PHP processing directly with the use of the mod_php module, Nginx must rely on a separate PHP processor to handle PHP requests. Most often, this processing is handled with php-fpm
, a PHP processor that has been extensively tested to work with Nginx.
/etc/nginx/nginx.conf
:fastcgi_pass
Directives:
fastcgi_param
fastcgi_pass
/etc/nginx/fastcgi.conf
/etc/nginx/snippets/fastcgi-php.conf
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
FastCGI sent in stderr: "PHP message: PHP Fatal error: Uncaught Error: Class .../...
.
Sep 11 15:44:31 SERVER systemd[1]: Starting The PHP 7.2 FastCGI Process Manager...
Related terms[edit]
See also[edit]
- PHP,
php-fpm, www.conf
,php -i
, PHP sessions, symfony,fastcgi_pass
,sessionclean (shell script)
,phpsessionclean.service (systemd service),phpquery
,php.ini
,/var/log/php*
, PECL,php --help
, PHPUnit, Laravel, PHP framework, Composer,phpbrew, Xdebug, php --version
, PHP Fatal error, Hello, World! (php)] - Web server: Nginx:
/etc/nginx/nginx.conf
,nginx -t
, Nginx logs, Nginx change log, PHP,php-fpm
, Let's encrypt, Nginx directives, Reverse Proxy, Configure HTTP redirection Nginx, Return,proxy_pass (Reverse proxy)
,ngx_http_rewrite_module
,/etc/nginx/sites-enabled/
,error.log
,access.log
,/nginx status
, AIO
Advertising: