Syntax: | min_delete_depth |
---|---|
Default: | min_delete_depth 0; |
Context: | http , server , location |
Allows the DELETE method to remove files provided that the number of elements in a request path is not less than the specified number. For example, the directive
1 | min_delete_depth 4; |
allows removing files on requests
1 2 3 | /users/00/00/name /users/00/00/name/pic.jpg /users/00/00/page.html |
and denies the removal of
1 | /users/00/00 |
Please login to continue.