我正在尝试使用 WebDAV 协议将我的 maven 项目网站部署到 apache 2.2 中。服务器。
当我将应用程序部署到服务器时,我遇到了上述错误。
我在httpd-dav.conf
. 但我仍然在 ahache_error.log 文件中发现上述错误。谁能帮我在这里找到原因。
DavLockDB "c:/apache2.2/var/DavLock"
Alias /sites "c:/apache2.2/sites"
<Directory "c:/apache2.2/sites">
Dav On
Order Allow,Deny
Allow from all
AuthType Digest
AuthName DAV-upload
Options Indexes
AuthUserFile "c:/wamp/bin/apache/apache2.2.22/user.passwd"
AuthDigestProvider file
# Allow universal read-access, but writes are restricted
# to the admin user.
<LimitExcept GET OPTIONS>
require user admin
</LimitExcept>
</Directory>