Apache WebDAV setup compatible with Windows
Windows supports mounting WebDAV shares as drives. WebDAV is a HTTP protocol for file access used by for example SharePoint.
1 |
net use Z: http://server/webdav /PERSISTENT:yes /USER:USER PASS |
It does however not support basic auth by default (basic auth sends password in cleartext, which is bad). It took me some troubleshooting to figure it out so I thought I’d share my results. You’ll probably need… Read More »