diff options
author | David King <imkingdavid@gmail.com> | 2013-09-02 14:33:19 -0700 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2013-09-02 14:36:40 -0700 |
commit | f317d6d8c5062d35062ce8737b8ac3c50e6c7615 (patch) | |
tree | 2bca91d2731413b1739df0f778b35e1a388e8625 /travis | |
parent | 68555d2d513a6a8721777382a8cc8e4633e18cd3 (diff) | |
download | forums-f317d6d8c5062d35062ce8737b8ac3c50e6c7615.tar forums-f317d6d8c5062d35062ce8737b8ac3c50e6c7615.tar.gz forums-f317d6d8c5062d35062ce8737b8ac3c50e6c7615.tar.bz2 forums-f317d6d8c5062d35062ce8737b8ac3c50e6c7615.tar.xz forums-f317d6d8c5062d35062ce8737b8ac3c50e6c7615.zip |
[ticket/11823] Set up nginx server to match PHP files with characters after .php
PHPBB3-11823
Diffstat (limited to 'travis')
-rwxr-xr-x | travis/setup-webserver.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |