In Strategy 10.x, you can access web folders shared with the WebDAV protocol that are hosted with IIS and Apache HTTP Server. KB45435 shows how to enabled WebDAV in Microsoft IIS and configure multimedia widget in Strategy Mobile 10.x. This technote shows how to enable WebDAV in Apache server in Windows.
Prerequisite:
Configuration Steps:
LoadModule alias_module modules/mod_alias.so LoadModule auth_digest_module modules/mod_auth_digest.so LoadModule authn_file_module modules/mod_authn_file.so LoadModule dav_module modules/mod_dav.so LoadModule dav_fs_module modules/mod_dav_fs.so LoadModule dav_lock_module modules/mod_dav_lock.so LoadModule setenvif_module modules/mod_setenvif.so # Distributed authoring and versioning (WebDAV) Include conf/extra/httpd-dav.conf
htdigest -c "C:\Users\Administrator\Downloads\jimmy\Apache24\user.passwd" DAV-upload admin
C:\Users\Administrator\Downloads\jimmy\Apache24\bin>htdigest -c "C:\Users\Administrator\Downloads\jimmy\Apache24\user.passwd" DAV-upload admin Adding password for admin in realm DAV-upload. New password: ******** Re-type new password: ********
Alias /sites "C:\Users\Administrator\Downloads\jimmy\Apache24\sites"
<Directory "C:\Users\Administrator\Downloads\jimmy\Apache24\sites">
Require all granted
Dav On
AuthType Digest
AuthName DAV-upload
Options Indexes
AuthUserFile "C:\Users\Administrator\Downloads\jimmy\Apache24\user.passwd"
AuthDigestProvider file
# Allow universal read-access, but writes are restricted
# to the admin user.
<LimitExcept GET OPTIONS>
require user admin
</LimitExcept>
</Directory>
Note: refer to https://www.mkyong.com/apache/how-to-enable-webdav-in-apache-server-2-2-x-windows/ for more details.