Ich habe ein Problem mit Apache2. Habe auch schon in anderen Foren gefragt, aber noch keine Antwort bekomen.
Wie viele bekomme ich beim starten von Apache folgenden Fehler ausgegeben:
|
Quellcode
|
1
|
[warn] NameVirtualHost *:80 has no VirtualHosts
|
Allerdings konnte ich bis jetzt keinen Fehler in meinen Config Dateien finden.
Hier meine 00_default_vhost.conf (eingebunden in httpd.conf):
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
NameVirtualHost *:80
<IfDefine DEFAULT_VHOST>
<VirtualHost *:80>
DocumentRoot "/root/Desktop/Dateien/Webs"
<Directory "/root/Desktop/Dateien/Webs">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule peruser.c>
ServerEnvironment apache apache
MinSpareProcessors 4
MaxProcessors 20
</IfModule>
</VirtualHost>
</IfDefine>
|
Und hier meine /etc/hosts - Datei (hatte gedacht, daran könnte es vielleicht auch liegen):
|
Quellcode
|
1
2
3
4
5
6
7
8
9
|
127.0.0.1 suicide.grimm suicide
192.168.0.2 immanuel.grimmm immanuel
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
|
Habe in beiden Dateien die Kommentare gefiltert. Kann mir irgendjemand weiterhelfen?