Created
January 7, 2018 16:46
-
-
Save alekstrust/54e94299120ffbf48b3c125c393ea0bb to your computer and use it in GitHub Desktop.
PHP-FPM configuration for 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
# PHP-FPM FastCGI server | |
# network or unix domain socket configuration | |
upstream php-fpm { | |
server 127.0.0.1:9000; | |
#server unix:/run/php-fpm/www.sock; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment