Hi,
Meine Konfig von dem VirtualHost sieht so aus:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Default Server
<VirtualHost 192.168.0.251:80>
ServerName server.lan.de
ServerAlias www.lan.de
User format_c
Group users
DocumentRoot "/srv/www/htdocs/www/html/"
TransferLog /srv/www/htdocs/www/access_log
ErrorLog /srv/www/htdocs/www/error_log
RewriteLog /srv/www/htdocs/www/rewrite_log
DirectoryIndex /cgi-bin/info.pl
ScriptAlias /cgi-bin/ "/srv/www/htdocs/www/html/cgi-bin/"
<Location /cgi-bin/>
SetHandler cgi-script
Options +ExecCGI -FollowSymLinks
</Location>
RewriteEngine On
RewriteRule /systeminformation/ /cgi-bin/info.pl?action=info
RewriteRule /netzwerkinformation/ /cgi-bin/info.pl?action=settings
RewriteRule /dhcpleases/ /cgi-bin/info.pl?action=dhcp
</VirtualHost>
Wenn ich jetzt die URL
http://server.lan.de/systeminformation/ aufrufe bekomm ich nen 300
Im ErrorLog erschein dann :
Options ExecCGI is off in this directory: /srv/www/htdocs/www/html/cgi-bin/info.pl
Irgendwie kappier ich den Zusammenhang nicht.
Weis jemand was ich fasch mache?
Gruß Alex