Commit deeb8982 authored by Fabien Potencier's avatar Fabien Potencier

minor #1167 Update fastcgi_pass socket location (victorhaggqvist)

This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #1167).

Discussion
----------

Update fastcgi_pass socket location

This makes it correspond with ubuntu 14.04 defaults

Commits
-------

42e9b8f2 update fastcgi_pass socket location
parents e46e475d 42e9b8f2
......@@ -61,7 +61,11 @@ resources to ``index.php``:
}
location @site {
fastcgi_pass unix:/var/run/php-fpm/www.sock;
# the ubuntu default
fastcgi_pass unix:/var/run/php5-fpm.sock;
# for running on centos
#fastcgi_pass unix:/var/run/php-fpm/www.sock;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
#uncomment when running via https
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment