Вам необходимо настроить виртуальный сервер для каждого сайта в конфигурации 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.