Jetzt läuft webdav prima, allerdings möchte ich gern noch die Verbindung über ssl laufen lassen.
SSL am Webserver ist aktiviert und ich kriege auch den https-Zugriff auf die Login-Seite der Syno.
Sobald ich über Windows aber den Zugriff auf webdav über httpS einrichte fragt er mich immer nach Login/Kennwort und nimmt diese nicht an.
Also ohne SSL geht webdav... mit SSL geht nix.
Mir fehlt irgendein Eintrag, hat jemand einen Tipp?
#Disitributed authoring and versioning (WebDAV)
#
# Required modules: mod_dav, mod_dav_fs, mod_setenvif, mod_alias
# mod_auth_digest, mod_authn_file
#
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule auth_digest_module modules/mod_auth_digest.so
#
# The following example gives DAV write access to a directory called
# "uploads" under the ServerRoot directory.
#
# The User/Group specified in httpd.conf needs to have write permissions
# on the directory where the DavLockDB is placed and on any directory where
# "Dav On" is specified.
#
DavLockDB /volume1/@tmp/DavLock
Alias /dav /volume1/dav
<Directory "/volume1/dav">
Order Allow,Deny
Allow from all
Options Indexes FollowSymLinks MultiViews
</Directory>
<Location /dav>
Dav On
AuthType Digest
AuthName DAV
AuthDigestDomain /dav/
https://hieristmeinservereingetragen/dav/
AuthDigestProvider file
# You can use the htdigest program to create the password database:
# htdigest -c "/usr/syno/etc/user.passwd" DAV admin
AuthUserFile "/usr/syno/etc/user.passwd"
<LimitExcept OPTIONS>
Require valid-user
</LimitExcept>
</Location>
#
# The following directives disable redirects on non-GET requests for
# a directory that does not include the trailing slash. This fixes a
# problem with several clients that do not appropriately handle
# redirects for folders with DAV methods.