Annotation of embedaddon/lighttpd/doc/config/conf.d/webdav.conf, revision 1.1
1.1 ! misho 1: #######################################################################
! 2: ##
! 3: ## WebDAV Module
! 4: ## ---------------
! 5: ##
! 6: ## http://www.lighttpd.net/documentation/webdav.html
! 7: ##
! 8: server.modules += ( "mod_webdav" )
! 9:
! 10: $HTTP["url"] =~ "^/dav($|/)" {
! 11: ##
! 12: ## enable webdav for this location
! 13: ##
! 14: webdav.activate = "enable"
! 15:
! 16: ##
! 17: ## By default the webdav url is writable.
! 18: ## Uncomment the following line if you want to make it readonly.
! 19: ##
! 20: #webdav.is-readonly = "enable"
! 21:
! 22: ##
! 23: ## Log the XML Request bodies for debugging
! 24: ##
! 25: #webdav.log-xml = "disable"
! 26:
! 27: ##
! 28: ##
! 29: ##
! 30: webdav.sqlite-db-name = home_dir + "/webdav.db"
! 31: }
! 32: ##
! 33: #######################################################################
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>