1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-14 04:42:04 +02:00

Merge pull request #2854 from bantu/ticket/12954

[ticket/12954] Correctly setup PATH_INFO on Travis CI.

* bantu/ticket/12954:
  [ticket/12954] Correctly setup PATH_INFO on Travis CI.
This commit is contained in:
Tristan Darricau 2014-08-10 00:12:58 +02:00
commit 469790146c

View File

@ -72,8 +72,11 @@ echo "
index index.php index.html;
location ~ \.php {
fastcgi_pass unix:$APP_SOCK;
include fastcgi_params;
include fastcgi_params;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param PATH_INFO \$fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;
fastcgi_pass unix:$APP_SOCK;
}
}
" | sudo tee $NGINX_CONF > /dev/null