I have a Apache (2.4.7) WebDAV service on port 443 (on Ubuntu). Neither moving nor renaming a file via WebDav is possible. Trying to rename a file in Cyberduck for example, yields a "Bad Gateway" error message. I know that there are issues with the combination of WebDav and SSL. My limited understanding is that Apache basically tries to move the file from a none-secured host to a secured host.
The server setup is rather basic.
<VirtualHost *:443>
...
Alias /mount /var/www/webdav-folder
<Location /mount>
DAV On
RewriteEngine Off
ForceType text/plain
AuthType Basic
AuthName "WebDAV"
AuthBasicProvider socache dbd
AuthDBDUserPWQuery [...]
Require valid-user
Options Indexes FollowSymLinks MultiViews
Order allow,deny
Allow from all
</Location>
</VirtualHost>
Any ideas are greatly appreciated!