§ Добавление конфигурации
Все из пор root. Должен быть файл, который заканчивается на conf, например
website.net.conf
1<VirtualHost *:80>
2
3 ServerName website.net
4 ServerAdmin webmaster@localhost
5 DocumentRoot /home/<username>/path/to/dir
6 ErrorLog ${APACHE_LOG_DIR}/error.log
7 CustomLog ${APACHE_LOG_DIR}/access.log combined
8
9</VirtualHost>
§ Коррекция apache2.conf
1<Directory />
2
3 Options FollowSymLinks
4 AllowOverride All
5 Require all granted
6
7</Directory>
§ Активация
a2ensite website.net.conf
systemctl reload apache2
В хосты прописать:
127.0.0.1 website.net