Commit d5f26243 authored by Fabien Potencier's avatar Fabien Potencier

merged branch simensen/patch-1 (PR #430)

Commits
-------

5fc0a7fe fastcgi_pass requires unix: prefix when using a socket

Discussion
----------

fastcgi_pass requires unix: prefix when using a socket

This is the case on my system at any rate. Possible that it is not
required in all cases or newer/older versions of nginx?
parents 6a92c3ad 5fc0a7fe
......@@ -46,7 +46,7 @@ resources to ``index.php``:
}
location ~ index\.php$ {
fastcgi_pass /var/run/php5-fpm.sock;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
......
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