apache 配置 webdav 筆記

Listen 8950
DavLockDB /etc/httpd/conf/DavLock
<VirtualHost 10.100.70.35:8950>
    DocumentRoot "/var/www/html/liuzhongliang"
    ForceType text/plain
    <Directory "/var/www/html/liuzhongliang">
        Order allow,deny
        Allow from all
        Dav On
        DavDepthInfinity on
        AllowOverride None
        Options All
        IndexOptions FancyIndexing
        AddDefaultCharset UTF-8
        AuthType Basic
        AuthName "WebDAV Server"
        AuthUserFile "/etc/httpd/conf/authliuzhongliang"
        Require valid-user
    </Directory>
</VirtualHost>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章