summaryrefslogtreecommitdiff
path: root/net-mail/sympa/files/sympa-lighttpd.conf
blob: ce072c5150728173778a2ac4a9d635b1bf06ee67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
server.modules += ("mod_fastcgi")
server.modules += ("mod_alias")

alias.url += ( "/static-sympa/" => "/var/spool/sympa/static_content/" )

$HTTP["url"] =~ "^/sympa" {
	fastcgi.server = ( "/sympa" =>
		((	"check-local"	=>	"disable",
			"bin-path"	=>	"/usr/libexec/sympa/wwsympa-wrapper.fcgi",
			"socket"	=>	"/var/run/lighttpd/sympa.sock",
			"max-procs"	=> 	2,
			"idle-timeout"	=> 	20,
		))
	)
}