WebDAV should be disabled on the publish environment.
See the CRX documentation for further details.
By configuring the Dispatcher you should restrict access so that only the following are available to external visitors:
/content- Site content/etc- Miscellaneous content such as designs
The following should be entered in the configuration file
dispatcher.any:
# only handle the requests in the following acl. default is 'none'
# the glob pattern is matched against the first request line
/filter
{
/0001
{
/glob "*"
/type "deny"
}
/0002
{
/glob "* /content[./]"
/type "allow"
}
/0003
{
/glob "* /etc[./]"
/type "allow"
}![]() | Note |
|---|---|
This configuration includes the following restrictions:
|
![[Note]](../resources/note.png)
![[Warning]](../resources/warning.png)