В моей локальной сети у меня есть сервер Ubuntu (я могу получить к нему через http://server). Я настроил лампу, и я сделал пару веб-сайтов, к которым я могу получить доступ, когда использую сам сервер, перейдя в:

http://localhost.test1.com и http://localhost.test2.com

На основной машине я хочу получить доступ к этим сайтам, с которых я отредактировал файл hosts, чтобы переслать эти URL на сервер

server localhost.test1.com
server localhost.test2.com

Это отправляет мой запрос на сервер, но сервер просто обслуживает веб-сайт по умолчанию.

Чего мне не хватает? Как заставить Apache узнать, на какой сайт я пытаюсь попасть?

1 ответ1

1

Вам необходимо настроить виртуальный сервер для каждого сайта в конфигурации apache /etc/apache2/sites-available . Вы делаете это, создавая новый файл 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 webmaster@localhost
    DocumentRoot /var/www/html

Вам нужно будет изменить информацию о виртуальном хосте и documentRoot для каждого.

пример

    <VirtualHost localhost.test1.com: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 webmaster@localhost
    DocumentRoot /var/www/foo/test1

Наконец, вам нужно включить эти новые сайты

    sudo a2ensite test1

примечание: имя сайта основано на имени файла conf.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .