templates/config/obj.conf

Wed, 25 Jun 2025 20:45:21 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 25 Jun 2025 20:45:21 +0200
changeset 611
b446daba6839
parent 456
52a4e1ea043e
permissions
-rw-r--r--

change error handling in case webdav_xattr_parse_data fails: set response to 500 instead of failig the entire multistatus response

#
# obj.conf
#
# NSAPI configuration
#

Object name="default" {
	NameTrans fn="assign-name" from="/hello" name="hello"
	NameTrans fn="assign-name" from="/admin" name="admin"
	PathCheck fn="find-pathinfo"
	ObjectType fn="type-by-extension"
	Service fn="send-options" method="OPTIONS"
	Service fn="common-index" type="internal/directory"
	Service fn="send-file"
	AddLog fn="common-log"
}

Object name="hello" {
	Service fn="service-hello"
}

Object name="admin" {
	Service fn="admin-service"
}

Object name="cgi-bin" {
	Service fn="send-cgi"
}

mercurial