Я хочу разместить два сайта на моем vps: test.example.xyz
и esc.example.xyz
(пример не настоящий домен). Итак, для каждого веб-сайта я настроил запись DNS:
test IN A 123.456.789.012
esc IN A 123.456.789.012
Затем я создал на сервере два файла в /etc/apache2/sites-available/
: test.conf
и esc.conf
, которые соответственно содержат:
<VirtualHost *:666>
DocumentRoot /usr/share/test/
ServerName test.example.xyz
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /usr/share/test/>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride ALL
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:666>
DocumentRoot /usr/share/esc/
ServerName esc.example.xyz
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /usr/share/esc/>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride ALL
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Затем я выполняю команды a2ensite test
и a2ensite esc
. Отображается подтверждение активации. Но сайты недоступны. Кто-нибудь может мне помочь, пожалуйста?
Спасибо за вашу помощь!