Знатоки нужна помощь, что то запутался. Есть машина на centos 7, настроил на нем 2 виртуал хоста. В hosts указал: 192.168.1.2 example1 192.168.1.2 example2
В компе с Win в hosts так же указал 192.168.1.2 example1 192.168.1.2 example2
При входе по 192.168.1.2 отображается страница приветствия Centos, при попытке зайти по доменному имени Не удается получить доступ к сайту. Если на Centos открыть виртуалхост по доменному имени, то все гуд. Помогите пожалуйста разобраться где натупил так
Файлы виртуальных хостов:
<VirtualHost *:80>
ServerAdmin admin@example1
DocumentRoot «/home/sites/example1/www/»
ServerName example1
ServerAlias www.example1
ErrorLog «/home/sites/example1/logs/example1-error_log»
CustomLog «/home/sites/example1/logs/example1-access_log» combined
php_admin_value mbstring.func_overload 0
<Directory «/home/sites/example1/www/»>
DirectoryIndex index.html index.php
Options FollowSymLinks
AllowOverride All
Require all granted
<VirtualHost *:80>
ServerAdmin admin@example2
DocumentRoot «/home/sites/example2/www/»
ServerName example2
ServerAlias www.example2
ErrorLog «/home/sites/example2/logs/example2-error_log»
CustomLog «/home/sites/example2/logs/example2-access_log» combined
php_admin_value mbstring.func_overload 0
<Directory «/home/sites/example2/www/»>
DirectoryIndex index.html index.php
Options FollowSymLinks
AllowOverride All
Require all granted