§ Добавление конфигурации

Все из пор root. Должен быть файл, который заканчивается на conf, например website.net.conf
<VirtualHost *:80>

    ServerName website.net
    ServerAdmin webmaster@localhost
    DocumentRoot /home/<username>/path/to/dir
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

§ Коррекция apache2.conf

<Directory />

    Options FollowSymLinks
    AllowOverride All
    Require all granted

</Directory>

§ Активация

a2ensite website.net.conf
systemctl reload apache2
В хосты прописать:
127.0.0.1 website.net