From f317d6d8c5062d35062ce8737b8ac3c50e6c7615 Mon Sep 17 00:00:00 2001 From: David King Date: Mon, 2 Sep 2013 14:33:19 -0700 Subject: [PATCH] [ticket/11823] Set up nginx server to match PHP files with characters after .php PHPBB3-11823 --- travis/setup-webserver.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/setup-webserver.sh b/travis/setup-webserver.sh index beb04b0fef..95fc4ec1f8 100755 --- a/travis/setup-webserver.sh +++ b/travis/setup-webserver.sh @@ -42,7 +42,7 @@ server { root $PHPBB_ROOT_PATH/; index index.php index.html; - location ~ \.php$ { + location ~ \.php { fastcgi_pass unix:$PHP_FPM_SOCK; include fastcgi_params; }