Виртуальный хост Apache2 отсутствует Document Root

Заранее спасибо.

Я просто следую учебному пособию от digitalocean: https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts. Я выполнил все инструкции, но когда я начну тестировать конфигурацию и добавить запись A с моего парковочного домена, скажем, например, example.com, и мой адрес digitalocean vps - 192.168.10.2. В этом сценарии я добавляю эти 3 виртуальных хоста с 3 различными DocumentRoot:

  1. /var/www/domainone.example.com/index.html
  2. /var/www/domaintwo.example.com/index.html
  3. /var/www/domainthree.example.com/index.html

Затем в свой парковочный домен я добавляю 3 разных записи A, как показано ниже:

  1. имя: domainone.example.com адрес: 192.168.10.2
  2. имя: domaintwo.example.com адрес: 192.168.10.2
  3. имя: domainthree.example.com адрес: 192.168.10.2

Когда я выполняю, это происходит следующим образом:

  1. URL-адрес domainone.example.com идет по адресу / var / www /domainone.example.com/index.html
  2. URL-адрес domaintwo.example.com идет по адресу / var / www /domaintwo.example.com/index.html
  3. но этот URL-адрес domainthree.example.com переходит в / var / www /domaintwo.example.com/index.html

Я уверен, что я написал правильный documentRoot в / etc / apache2 / sites-available / (для каждого домена).config и перезапустил службу apache2

Еще раз спасибо

редактировать

  1. Это для /etc/apache2/sites-available/domaintwo.example.com.conf

    <VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com
    
        ServerAdmin localhost@admin
        DocumentRoot /var/www/domaintwo.example.com/public
        ServerName domaintwo.example.com
        ServerAlias www.domaintwo.example.com
    
        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn
    
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
    
        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf
        SSLEngine on
    

    SSLCertificateFile /etc/apache2/ssl/apache.crt SSLCertificateKeyFile /etc/apache2/ssl/apache.key

  2. Это для /etc/apache2/sites-available/domainthree.example.com.conf

        <VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com
    
        ServerAdmin localhost@admin
        DocumentRoot /var/www/domainthree.example.com/public
        ServerName domainthree.example.com
        ServerAlias www.domainthree.example.com
    
        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn
    
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
    
        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf
        SSLEngine on
        SSLCertificateFile /etc/apache2/ssl/apache.crt
        SSLCertificateKeyFile /etc/apache2/ssl/apache.key
        </VirtualHost>
    

0 ответов

Это проблема с SSL, ИМО. Домен 2 отсортирован по алфавиту выше 3 (приоритет). Apache по умолчанию выполняет domaintwo через HTTPS (SSL). Таким образом, VH для домена 3 неверен или не включен для обоих протоколов. Я предполагаю более или менее. Надеюсь, поможет.

Другие вопросы по тегам