Last active
December 20, 2015 01:59
-
-
Save Mulkave/6053040 to your computer and use it in GitHub Desktop.
PHP-FPM handler for php scripts proxied by Nginx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NOTE: make sure the 'include' directive is correct according to your nginx installation | |
# NOTE: make sure the fastcgi_pass is running on the correct socket | |
# might need to change it to http://127.0.0.1:9000 with default php-fpm configuration | |
try_files $uri =404; | |
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock; | |
fastcgi_index index.php; | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
fastcgi_intercept_errors on; | |
include /usr/local/etc/nginx/fastcgi_params; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment