Commit bce44969 authored by Fabien Potencier's avatar Fabien Potencier

Merge branch '1.2' into 1.3

* 1.2:
  update fastcgi_pass socket location
parents 6a092186 deeb8982
......@@ -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