use regexp instead to ignore
This commit is contained in:
parent
f375aab733
commit
7960f2ba2c
|
@ -20,11 +20,6 @@
|
|||
location ~ ^/(data|config|\.ht|db_structure\.xml|README) {
|
||||
deny all;
|
||||
}
|
||||
location ~ /remote.php/ {
|
||||
# Don't log requests that uses DAV (results in heavy spam)
|
||||
log_not_found off;
|
||||
access_log off;
|
||||
}
|
||||
}
|
||||
location ~ ^(/cloud)(/[^/]+\.php)(/.*)?$ {
|
||||
# note: ~ has precendence over a regular location block
|
||||
|
@ -47,6 +42,10 @@
|
|||
internal;
|
||||
alias $STORAGE_ROOT/owncloud;
|
||||
}
|
||||
location ~ ^/cloud/remote.php/(caldav|webdav|carddav)(.*)$ {
|
||||
# Don't log requests that uses DAV (results in heavy spam)
|
||||
access_log off;
|
||||
}
|
||||
location ~ ^/((caldav|carddav|webdav).*)$ {
|
||||
# Z-Push doesn't like getting a redirect, and a plain rewrite didn't work either.
|
||||
# Properly proxying like this seems to work fine.
|
||||
|
|
Loading…
Reference in New Issue