Account Links: Cart | Your Account | Logout

Skip to content

Red Hat Knowledgebase

Red Hat Knowledgebase Search:

Updated Within the Last:

New Solutions within the last day New Solutions within the last week New Solutions within the last month

Browse by topics:


Click to View a Topic
Red Hat Enterprise Linux > Web Server > Issue <<  71 of 73 >>

Solution Tools:


Email a Solution Postcard Printer version Submit a comment on this answer Update notifications Request an answer Back

Article Reference

Article ID: 12749
Last update: 06-03-08
Issue:
How do I enable WebDAV in Apache httpd?
Resolution:

To enable webdav on a directory in Apache httpd, you simply need to specify "Dav on" for the directory you wish to enable and it must be writable by the web server. A simple example:

  1. Make directory /var/www/webdav
    # mkdir /var/www/webdav
  2. Change the owner and group permissions on the directory to apache.
    # chown apache.apache /var/www/webdav
  3. Create a file /etc/httpd/conf.d/webdav.conf like:
    Alias /webdav /var/www/webdav
    
    Dav on
    
    
  4. Restart httpd:
    # service httpd restart
    
  5. Connect to webdav client:
    # cadaver http://your_host/webdav
    dav:/webdav/> ls
    Listing collection `/webdav/': succeeded.
            fstab                                534  Mar  5 15:40
    dav:/webdav/>quit
    


How well did this entry answer your question?


good wrong incomplete out of date
Red Hat Enterprise Linux > Web Server > Issue <<   71  of  73  >>