Leser: 1
5 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride All
SetHandler perl-script
PerlHandler ModPerl::Registry
Options +ExecCGI
# -MultiViews +SymLinksIfOwnerMatch
# Order allow,deny
# Allow from all
</Directory>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
#
# "/usr/lib/cgi-bin" could be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory /usr/lib/cgi-bin/>
SetHandler perl-script
PerlHandler Apache::Registry
AllowOverride All
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
5 Einträge, 1 Seite |