mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2026-03-04 15:54:48 +01: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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user