zwei verschiedene virtuelle Hosts, eine Seite wird angezeigt

zwei verschiedene virtuelle Hosts, eine Seite wird angezeigt

Ich habe zwei verschiedene Sites mit virtuellen Hosts konfiguriert (der Inhalt der Virtualhost-Dateien ist unten aufgeführt). Ich habe einfach die Standarddatei kopiert und ein paar Zeilen bearbeitet …

Wenn ich meinen Browser auf eine der beiden Sites richte, wird nur der Inhalt der ersten der beiden angezeigt ...

Warum?

<VirtualHost *:80>
    ServerAdmin [email protected]

    DocumentRoot /var/www/hunterprojects.com/public_html
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/hunterprojects.com/public_html>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

UND DAS ZWEITE:

<VirtualHost *:80>
    ServerAdmin [email protected]

    DocumentRoot /var/www/dodolabarchive.ca/public_html
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/dodolabarchive.ca/public_html>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

Antwort1

Anscheinend fehlt der Abschnitt ServerName Ihrer virtuellen Hosts

<VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName hunterprojects.com
    DocumentRoot /var/www/hunterprojects.com/public_html

Und

<VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName dodolabarchive.ca
    DocumentRoot /var/www/dodolabarchive.ca/public_html

Hier ist auch ein Link zur Apache-Dokumentation, die weitere Informationen dazu enthälthttp://httpd.apache.org/docs/2.0/mod/core.html#servername

verwandte Informationen