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"
)
))
)
|