config lucid main
	option pollinterval 15000
	option threadlimit 25
	option daemonize 1
	option debug 0
	list supports tcpserver
	list supports server

config DirectoryPublisher webroot
	option name 'Webserver Share'
	option physical /www
	option virtual ''
	option domain ''
	
config LuciWebPublisher luciweb
	option name 'LuCI Webapplication'
	option physical ''
	list virtual /luci
	list virtual /cgi-bin/luci
	option domain ''

config tcpserver httpd
	option entrypoint "luci.lucid.http"
	list supports DirectoryPublisher
	list supports LuciWebPublisher

config daemon http
	option slave httpd
	list address 80
	list publisher webroot
	list publisher luciweb
	option nokeepalive 1
	option enabled 1
	
config daemon https
	option slave httpd
	list address 443
	list publisher webroot
	list publisher luciweb
	option nokeepalive 1
	option enabled 1
	option encryption enable
