owncloud: fix regex in nginx config

/cloud/index.php/apps/files/ajax/scan.php would not be parsed right because of two .php's
This commit is contained in:
Joshua Tauberer 2014-08-15 23:17:16 +00:00
parent 8c9f278166
commit 6fdef379ad
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ server {
}
}
location ~ ^(/cloud)(/.+\.php)(/.*)?$ {
location ~ ^(/cloud)(/[^/]+\.php)(/.*)?$ {
# note: ~ has precendence over a regular location block
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /usr/local/lib/owncloud/$2;