Apache yapılandırmam için ikinci bir sanal ana bilgisayar eklemeye çalışıyorum, ancak kullanılacak yeni sanal ana bilgisayarı bulamıyorum.
Benim httpd.conf
sadece aşağıdaki satırı içerir:
ServerName radiofreebrighton.org.uk
Ayrıca ports.conf
, aşağıdakileri içeren bir dosyam var:
NameVirtualHost *:80
Listen 80
<IfModule mod_ssl.c>
Listen 443
</IfModule>
Ben de iki dosya var sites-available
sembolik olarak hangi sites-enabled
tarafından a2ensite
:
- radiofreebrighton.org.uk
- trafalgararches.co.uk
İlki içeriği:
<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>
İkincisinin içeriği:
<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>
Ancak trafalgararches.co.uk sayfasından bir sayfa talep ettiğimde, radiofreebrighton.org.uk sayfasından bir sayfa verilir. Bu neden oluyor? Nasıl düzeltebilirim?
Düzenle:
Apache tarafından anlaşıldığı şekilde sanal ana bilgisayar yapılandırması:
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
(Panoda ile apache2ctl -S
bilinir httpd -S
.)
NameVirtualHost *:80
Yapılandırmanızda yerde?
ServerName
veServerAlias
satırlarınızın ucundan çıkarmanız gerekir . Ayrıca, apache'yi yeniden başlattığınızdan emin olun.