Update nginx.conf

This commit is contained in:
Julien Malik 2015-01-19 08:21:46 +01:00
parent f86819cc8f
commit 2a88f770bf

View file

@ -7,8 +7,9 @@ location PATHTOCHANGE {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
}