Enabling PHP with NGINX: Difference between revisions
No edit summary |
No edit summary |
||
Line 24: | Line 24: | ||
#} | #} | ||
and uncomment (but '''NB | and uncomment (but '''NB re-comment out fastcgi_pass '''...) | ||
# pass PHP scripts to FastCGI server | # pass PHP scripts to FastCGI server |
Revision as of 18:48, 15 March 2021
Based in part on this tutorial for a full "LEMP" stack -- this is just PHP for NGINX without MYSQL.
sudo apt install php-fpm
if necessary...
sudo apt install nginx
Then in nginx, the default settings has a template for enabling php, you just need to uncomment it (but leave one of the lines still commented out)... Here's the "final" settings
sudo nano /etc/nginx/sites-available/default
LOCATE THIS PART:
# pass PHP scripts to FastCGI server # #location ~ \.php$ { # include snippets/fastcgi-php.conf; # # # With php-fpm (or other unix sockets): # fastcgi_pass unix:/run/php/php7.3-fpm.sock; # # With php-cgi (or other tcp sockets): # fastcgi_pass 127.0.0.1:9000; #}
and uncomment (but NB re-comment out fastcgi_pass ...)
# pass PHP scripts to FastCGI server # location ~ \.php$ { include snippets/fastcgi-php.conf; # With php-fpm (or other unix sockets): fastcgi_pass unix:/run/php/php7.3-fpm.sock; # With php-cgi (or other tcp sockets): # fastcgi_pass 127.0.0.1:9000; }