What is this NGINX location for PHP FPM fastcgi_pass 127.0.0.1:9000 really doing?
Here's my locations and I have no errors, but I'd rather fully understand that line.
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { include snippets/fastcgi-php.conf; # With php7.0-cgi alone: # With php7.0-fpm: #fastcgi_pass 127.0.0.1:9000; #What is this doing? fastcgi_pass unix:/run/php/php7.0-fpm.sock; }