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

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,
			))
		)
}