You are looking at documentation for an older release. Not what you want? See the current release documentation.
The embedded WebDAV server lets you configure some parameter via exo.properties file.
# JCR Webdav configuration exo.webdav.def-folder-node-type=nt:folder exo.webdav.def-file-node-type=nt:file exo.webdav.def-file-mimetype=application/octet-stream exo.webdav.update-policy=update exo.webdav.folder-icon-path=/eXoWCMResources/skin/images/file/nt-folder.png exo.webdav.cache-control=text/*:max-age=3600;image/*:max-age=1800;application/*:max-age=1800;*/*:no-cache
The values you see in the code above are the default values. Here is a brief description of each parameter:
| exo.webdav.def-folder-node-type | Default (JCR) node type which is used for the creation of collections. | 
| exo.webdav.def-file-node-type | Default (JCR) node type which is used for the creation of files. | 
| exo.webdav.def-file-mimetype | A mime-type is detected by file extension or HTTP request header. If those are not found, this parameter is used. | 
| exo.webdav.update-policy | This defines the behavior when a PUT command is executed against an existing resource: 
 | 
| exo.webdav.folder-icon-path | The default path is an icon in eXoWCMResources webapp. | 
| exo.webdav.cache-control | This determines the live time of the caches for each type of responses. Use no-cache if you want a type to be not cached. | 
See more information in eXo JCR Reference, WebDAV.
	
	See also