1

Apache サーバーに問題があります。

新規インストール(debian 6.0)を行いました。

/etc/apache2/sites-available に mysite.com と dev.mysite.com の 2 つの構成ファイルを作成し、a2ensite コマンドでそれらを有効にして、サーバーをリロードしました (/etc/init.d/apache2 reload)

2 つの要求をサーバーにリダイレクトするようにホスト ファイルを変更しました。mysite.com にアクセスしようとしても問題ありませんが、dev.mysite.com にアクセスしようとすると、mysite.com のコンテンツを取得します。

ここに私の設定ファイルがあります:

apache2.conf の一部

# Include ports listing
Include ports.conf

# Include the virtual host configurations:
Include sites-enabled/*

ports.conf ファイル

# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default
# This is also true if you have upgraded from before 2.2.9-3 (i.e. from
# Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and
# README.Debian.gz

NameVirtualHost *:80
Listen 80

<IfModule mod_ssl.c>
    # If you add NameVirtualHost *:443 here, you will also have to change
    # the VirtualHost statement in /etc/apache2/sites-available/default-ssl
    # to <VirtualHost *:443>
    # Server Name Indication for SSL named virtual hosts is currently not
    # supported by MSIE on Windows XP.
    Listen 443
</IfModule>

<IfModule mod_gnutls.c>
    Listen 443
</IfModule>

sites-available/mysite.com ファイル:

<VirtualHost *>
        ServerAdmin web@mydomain.com
        ServerName www.mysite.com
        ServerAlias mysites.com
        ServerAlias www.mysites.com
        ServerAlias mysite.com
        DocumentRoot /media/Data/www/mysiteCom
        <Directory />
                Options FollowSymLinks
                AllowOverride All
        </Directory>
        <Directory /media/Data/www/mysiteCom>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                Allow from all
        </Directory>
        ErrorLog /var/log/apache2/error_mysiteCom
        LogLevel warn
        CustomLog /var/log/apache2/access_mysiteCom combined
        ServerSignature Off
</VirtualHost>

私のsites-available/dev.mysite.comファイル:

<VirtualHost *>
        ServerAdmin web@mydomain.com
        ServerName dev.mysite.com
        ServerAlias dev.mysites.com
        DocumentRoot /media/Data/www/devMysiteCom
        <Directory />
                Options FollowSymLinks
                AllowOverride All
        </Directory>
        <Directory /media/Data/www/devMysiteCom>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                Allow from all
        </Directory>
        ErrorLog /var/log/apache2/error_devMysiteCom
        LogLevel warn
        CustomLog /var/log/apache2/access_devMysiteCom combined
        ServerSignature Off
</VirtualHost>

私が間違ったことのアイデアはありますか?

4

1 に答える 1

2

エラーが見つかりました。

実際、アクセスするポートを指定することは必須のようです。そのため、VirtualHost で設定する必要がありました。

<VirtualHost *:80>
于 2011-07-27T12:12:04.353 に答える