1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2024-11-22 02:17:26 +00:00

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

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;