You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PROPFIND doesn't play well with rewrites nor try_file.
Example:
location /dav {
...
root /srv/dav/$remote_user;
# just remove /dav path prefix,
# so we don't need an additional /dav subpath in the filesystem:
rewrite ^/dav/(.*)$ /$1 break;
}
PROPFIND for http://myserver/dav/x returns:
<D:href>/x</D:href>
when it should have a way to return the href path unaltered, since this is what clients expect:
<D:href>/dav/x</D:href>
The text was updated successfully, but these errors were encountered:
PROPFIND
doesn't play well with rewrites nortry_file
.Example:
PROPFIND
forhttp://myserver/dav/x
returns:when it should have a way to return the href path unaltered, since this is what clients expect:
The text was updated successfully, but these errors were encountered: