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:
parent
8c9f278166
commit
6fdef379ad
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue