diff options
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | config/apache.conf | 32 | ||||
-rw-r--r-- | config/lighttpd.conf | 24 |
3 files changed, 63 insertions, 1 deletions
@@ -1,6 +1,8 @@ # cqrlogo - CGI QR-Code logo for web services PREFIX := /usr +APACHECONF := /etc/apache/conf/extra/ +LIGHTTPDCONF := /etc/lighttpd/conf.d/ CC := gcc MD := markdown INSTALL := install @@ -43,13 +45,17 @@ cqrlogo.png: cqrlogo.cgi QUERY_STRING='scale=4' \ ./cqrlogo.cgi | $(SED) '1,/^$$/d' > cqrlogo.png -install: install-bin install-doc +install: install-bin install-config install-doc install-bin: cqrlogo.cgi cqrlogo.fcgi $(INSTALL) -D -m0755 cqrlogo.cgi $(DESTDIR)$(PREFIX)/share/webapps/cqrlogo/cqrlogo.cgi $(INSTALL) -D -m0755 cqrlogo.fcgi $(DESTDIR)$(PREFIX)/share/webapps/cqrlogo/cqrlogo.fcgi $(INSTALL) -D -m0644 cqrlogo.conf $(DESTDIR)/etc/cqrlogo.conf +install-config: config/apache.conf config/lighttpd.conf + $(INSTALL) -D -m0644 config/apache.conf $(DESTDIR)$(APACHECONF)/cqrlogo.conf + $(INSTALL) -D -m0644 config/lighttpd.conf $(DESTDIR)$(LIGHTTPDCONF)/cqrlogo.conf + install-doc: README.html cqrlogo.png $(INSTALL) -D -m0644 README.md $(DESTDIR)$(PREFIX)/share/doc/cqrlogo/README.md $(INSTALL) -D -m0644 README.html $(DESTDIR)$(PREFIX)/share/doc/cqrlogo/README.html 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> 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" => "" ) |