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/apache.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/apache.conf')
-rw-r--r-- | config/apache.conf | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/config/apache.conf b/config/apache.conf new file mode 100644 index 0000000..61eff91 --- /dev/null +++ b/config/apache.conf @@ -0,0 +1,32 @@ +# Apache configuration file for cqrlogo +# +# to enable cqrlogo in apache just make sure modules mod_alias and either +# of mod_fastcgi and mod_fcgid are loaded + +<IfModule alias_module> + # try fastcgi first + <IfModule fastcgi_module> + AddHandler fastcgi-script fcgi + ScriptAlias /cqrlogo "/usr/share/webapps/cqrlogo/cqrlogo.fcgi" + </IfModule> + + # then use fcgid + <IfModule !fastcgi_module> + <IfModule fcgid_module> + AddHandler fcgid-script fcgi + ScriptAlias /cqrlogo "/usr/share/webapps/cqrlogo/cqrlogo.fcgi" + </IfModule> + </IfModule> + + # and fall back to simple CGI if fastcgi modules above fail + <IfModule !fastcgi_module> + <IfModule !fcgid_module> + ScriptAlias /cqrlogo "/usr/share/webapps/cqrlogo/cqrlogo.cgi" + </IfModule> + </IfModule> + + <Directory /usr/share/webapps/cqrlogo/> + Options ExecCGI + Allow from all + </Directory> +</IfModule> |