diff options
author | Christian Hesse <mail@eworm.de> | 2014-02-20 08:42:22 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2014-02-20 08:42:22 +0100 |
commit | 2c277dc0c5cb936a23ee58948854b2e3eb6dd251 (patch) | |
tree | 0df65f44583d66d2a1d40819bc6432edccdc3540 /config/lighttpd.conf | |
parent | 2dd889294d577e484a431b7bce20aaae1731786f (diff) | |
download | cqrlogo-2c277dc0c5cb936a23ee58948854b2e3eb6dd251.tar.gz cqrlogo-2c277dc0c5cb936a23ee58948854b2e3eb6dd251.tar.zst |
add and install configuration files for apache and lighttpd
Diffstat (limited to 'config/lighttpd.conf')
-rw-r--r-- | config/lighttpd.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/config/lighttpd.conf b/config/lighttpd.conf new file mode 100644 index 0000000..a697d8a --- /dev/null +++ b/config/lighttpd.conf @@ -0,0 +1,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" => "" ) |