Использую днс сервер от яндекса, скрипт разделен на frontend и backend(админка), фронтальную часть я настроил, создал /etc/apache2/sites-available/сайт.ру.conf где идет перенаправление на frontend/www, все работает , теперь хочу настроить админку по адресу админ.сайт.ру перенаправление на backend/www, , пробовал настраивать как основной домен но не работает Сервер не найден, что нужно сделать?
создал sudo nano /etc/apache2/sites-available/сайт.ру.conf
в нем
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName сайт.ру
ServerSignature Off
DocumentRoot /var/www/сайт.ру/frontend/www
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/сайт.ру/frontend/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
потом sudo a2ensite сайт.ру.conf
sudo service apache2 restart
все фронтенд заработал, все ссылки работают, пока проблем не обнаружил
После перехожу к настройкам поддомена, в яндекс днс создал запись admins A ХХ.74.74.183
создал sudo nano /etc/apache2/sites-available/admins.сайт.ру.conf
в нем
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName admins.сайт.ру
DocumentRoot /var/www/сайт.ру/backend/www
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/сайт.ру/backend/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
потом sudo a2ensite admins.сайт.ру.conf
sudo service apache2 restart
перехожу на поддомен сервер не найден