ScriptAlias cgi

wynni

wynni

Eroberer
Hallo,

schaue mir gerade Nagios an.... Nun habe ich Probleme mit der Konfiguration von Apache. Die Seite ist zwar erreichbar aber die die cgi Scripte laufen nicht. Ich benutze Ubuntu und habe in der sites-available/default den Pfad für die cgi ScriptAliase gesetzt. Hier meine sites-available/default:
Code:
  1  NameVirtualHost *
  2 <VirtualHost *>
  3         ServerAdmin webmaster@localhost
  4 
  5         DocumentRoot /usr/local/nagios/share
  6         <Directory />
  7                 Options FollowSymLinks
  8                 AllowOverride None
  9         </Directory>
 10         Alias /nagios /usr/local/nagios/share
 11         <Directory "/usr/local/nagios/share">
 12                 Options Indexes FollowSymLinks MultiViews
 13                 AllowOverride All
 14                 Order allow,deny
 15                 allow from all
 16                 # Uncomment this directive is you want to see apache2's
 17                 # default start page (in /apache2-default) when you go to /
 18         #       RedirectMatch ^/$ /apache2-default/
 19         </Directory>
 20 
 21         ScriptAlias /nagios/cgi-bin /usr/local/nagios/sbin
 22         <Directory "/usr/local/nagios/sbin">
 23                 AllowOverride AuthConfig
 24                 Options ExecCGI
 25                 SetHandler cgi-script
 26                 Order allow,deny
 27                 Allow from all
 28         </Directory>
 29 
 30         ErrorLog /var/log/apache2/error.log
 31 
 32         # Possible values include: debug, info, notice, warn, error, crit,
 33         # alert, emerg.
 34         LogLevel warn
 35 
 36         CustomLog /var/log/apache2/access.log combined
 37         ServerSignature On 
 38   </VirtualHost>

Beim restart des Apache meldet er mir folgenden Fehler:
Code:
 * Forcing reload of apache 2.0 web server...                                                                                [Mon Apr 09 16:19:09 2007] [warn] The ScriptAlias directive in /etc/apache2/sites-enabled/000-default at line 21 will probably never match because it overlaps an earlier Alias.
[Mon Apr 09 16:19:09 2007] [warn] The ScriptAlias directive in /etc/apache2/sites-enabled/000-default at line 21 will probably never match because it overlaps an earlier Alias

Nun meine Frage... wo werden normalerweise die cgi scripte konfiguriert? Kann leider kein Konfigurationsfile finden ....


Bin für jede Hilfe dankbar..


wynni
 

Ähnliche Themen

Probleme mit virtual hosts

NagiosGrapher 1.7.1 funktioniert nicht

Apache /var/www zu /home/ich/www wechseln

Samba 4 Gast Zugang unter Ubuntu funktioniert nicht

Starten von Apache2 in Kubuntu

Zurück
Oben