aboutsummaryrefslogtreecommitdiffstats
path: root/config/lighttpd.conf
blob: a697d8abbd9d6d2ecf7985cf742eea7a19e61d04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# lighttpd configuration file for cqrlogo
#
# to enable cqrlogo in lighttpd just include this configuration in main
# configuration with something like this:
#
# include "conf.d/cqrlogo.conf"

server.modules += ( "mod_alias", "mod_fastcgi" )
#server.modules += ( "mod_alias", "mod_cgi" )

alias.url += ( "/cqrlogo" => "/usr/share/webapps/cqrlogo/cqrlogo.fcgi" )
#alias.url += ( "/cqrlogo" => "/usr/share/webapps/cqrlogo/cqrlogo.fcgi" )

fastcgi.server = (
	".fcgi" => (
		"localhost" => (
			"max-procs" => 1,
			"socket" => "/run/lighttpd/cqrlogo-fastcgi.sock",
			"bin-path" => "/usr/share/webapps/cqrlogo/cqrlogo.fcgi"
		)
	)
)

#cgi.assign = ( ".cgi" => "" )