1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/linuxdash_ynh.git synced 2024-09-03 19:36:07 +02:00

[enh] Update nginx conf.

This commit is contained in:
opi 2014-06-02 14:22:04 +02:00
parent d8d098614a
commit 085723fc1b

View file

@ -8,6 +8,9 @@ location YNH_WWW_PATH {
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user;