File: 20-iipsrv.conf

package info (click to toggle)
iipimage 1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 7,376 kB
  • sloc: sh: 8,127; cpp: 7,791; ansic: 3,983; java: 872; makefile: 200; perl: 2
file content (26 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Lighttpd configuration of the iipimage-server package.

server.modules   += ( "mod_fastcgi" )

fastcgi.server += (
	"/iipsrv/iipsrv.fcgi" =>
	((
		"host" => "127.0.0.1",
		"port" => 9000,
		"check-local" => "disable",
		"min-procs" => 1,
		"max-procs" => 1,
		"bin-path" => "/usr/lib/iipimage-server/iipsrv.fcgi",

		# IIPImage server parameters.
		# See iipimage manpage for more details.
		"bin-environment" => (
			"LOGFILE" => "/var/log/iipsrv.log",
			"VERBOSITY" => "1",
			"JPEG_QUALITY" => "90",
			"MAX_IMAGE_CACHE_SIZE" => "10",
			"MAX_CVT" => "5000",
			"MEMCACHED_SERVERS" => "localhost"
		)
	))
)