• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Web Dav issues.

B

BasicMind

Guest
Okay I'm trying to get webdav up and running. from what Ive found on apache and on this forum I came up with this.

httpd.conf
Code:
<Directory /home/httpd/vhosts/domain.com/httpdocs/webdav/>
        AuthType Digest
        AuthName iCal
        AuthDigestFile "/home/httpd/vhosts/domain.com/dav.digest.passwd"

        <LimitExcept GET HEAD OPTIONS>
                require valid-user
        </LimitExcept>

        DAV On
        Order allow,deny
        Allow from All
        Options All
</Directory>
added the user resarted apache and I got nothing.
apache restarts fine and dandy but there are no webdav directorys. Am I missing something painfuly obvious.
 
Back
Top