Browse Source

Merge pull request #8 from julienmalik/patch-3

Update nginx.conf
pull/1/head
Le Kload 11 years ago
parent
commit
80fd338682
  1. 5
      conf/nginx.conf

5
conf/nginx.conf

@ -7,8 +7,9 @@ location PATHTOCHANGE {
fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php; fastcgi_index index.php;
include fastcgi_params; 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;
} }

Loading…
Cancel
Save