Имеется подключённый через a2ensite домен example.com:
<VirtualHost *:80>
ServerName example.com
ServerAdmin webmaster@localhost
DocumentRoot /home/inetbug/www/example.com
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/inetbug/www/example.com/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Захотел сделать так, чтобы при заходе на subdomain.example.com Apache открывал другую директорию:
<VirtualHost *:80>
ServerName subdomain.example.com
ServerAdmin webmaster@localhost
DocumentRoot /home/inetbug/www/subdomain
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/inetbug/www/subdomain/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Опять же, добавил эту конфигурацию через a2ensite, но это не работает — адрес не находится браузером. Какую очевидную вещь я забыл добавить? Может, проблемы с самим доменом?