blob: 6c71444bb9479b8f7ad860fe6f189cc9fddf730e (
about) (
plain) (
blame)
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
27
28
29
30
31
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/lib/cqrlogo/cqrlogo.fcgi"
</IfModule>
# then use fcgid
<IfModule !fastcgi_module>
<IfModule fcgid_module>
AddHandler fcgid-script fcgi
ScriptAlias /cqrlogo "/usr/lib/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/lib/cqrlogo/cqrlogo.cgi"
</IfModule>
</IfModule>
<Directory /usr/lib/cqrlogo/>
Options +ExecCGI
Require all granted
</Directory>
</IfModule>
|