J'essaie d'ajouter un deuxième hôte virtuel à ma configuration apache, mais je n'arrive pas à obtenir le nouvel hôte virtuel à utiliser.
Mon httpd.conf
contient juste la ligne suivante:
ServerName radiofreebrighton.org.uk
J'ai également un ports.conf
fichier qui contient les éléments suivants:
NameVirtualHost *:80
Listen 80
<IfModule mod_ssl.c>
Listen 443
</IfModule>
J'ai deux fichiers dans sites-available
lesquels ont été liés sites-enabled
par a2ensite
:
- radiofreebrighton.org.uk
- trafalgararches.co.uk
Le contenu du premier est:
<VirtualHost _default_:80>
DocumentRoot /home/tom/www
ServerAdmin tom@radiofreebrighton.org.uk
ServerName radiofreebrighton.org.uk
ServerAlias www.radiofreebrighton.org.uk
<Directory /home/tom/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel error
CustomLog /var/log/apache2/access.log combined
Alias /wiki /home/tom/www/mediawiki/index.php
</VirtualHost>
Le contenu de ce dernier est:
<VirtualHost *:80>
DocumentRoot /home/tom/tata-www
ServerAdmin admin@trafalgararches.co.uk
ServerName trafalgararches.co.uk
ServerAlias www.trafalgararches.co.uk
<Directory /home/tom/tata-www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
logLevel error
ErrorLog /var/log/apache2/error.log
</VirtualHost>
Mais chaque fois que je demande une page à trafalgararches.co.uk, je reçois une page de radiofreebrighton.org.uk. Pourquoi cela pourrait-il arriver? Comment puis-je le réparer?
Modifier:
Configuration de l'hôte virtuel tel que compris par apache:
tom@rfb:/usr/local$ apache2ctl -S
VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:80 is a NameVirtualHost
default server radiofreebrighton.org.uk (/etc/apache2/sites-enabled/radiofreebrighton.org.uk:1)
port 80 namevhost radiofreebrighton.org.uk (/etc/apache2/sites-enabled/radiofreebrighton.org.uk:1)
port 80 namevhost trafalgararches.co.uk (/etc/apache2/sites-enabled/trafalgararches.co.uk:1)
Syntax OK
(Glané via apache2ctl -S
aka httpd -S
.)
NameVirtualHost *:80
quelque part dans votre configuration?
ServerName
etServerAlias
. Assurez-vous également d'avoir redémarré Apache.