Httpd

Apache httpd、WebDAV 條目以提供對目錄的訪問權限

  • May 22, 2012

在 Apache httpd 2.2 上啟用 WebDav 後,我想授予對特定目錄的訪問權限(與 httpd 管理的其他站點無關)。

執行此操作的最小條目集是什麼?

一旦你安裝了模組,文件建議這樣的事情會讓你在預設的虛擬主機下開始

DavLockDB /usr/local/apache2/var/DavLock

Alias /foo /home/my/files/directory
<Location /foo>
Dav On

AuthType Basic
AuthName DAV
AuthUserFile user.passwd

<LimitExcept GET OPTIONS>
require user admin
</LimitExcept>
</Location>

引用自:https://serverfault.com/questions/391468