Есть небольшая ВПСка с Centos 7 на борту.
Поставил лам сервер, пытаюсь прикрутить домен хозяинторг.рф .
Конфиг /etc/httpd/conf/httpd.conf
Код: Выделить всё
ServerRoot "/etc/httpd"
Include conf.modules.d/*.conf
User apache
Group apache
ServerAdmin root@localhost
<Directory />
AllowOverride All
Require all denied
</Directory>
DocumentRoot "/var/www/html"
<Directory "/var/www">
AllowOverride None
Require all granted
</Directory>
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
<Files ".ht*">
Require all denied
</Files>
ErrorLog "logs/error_log"
LogLevel warn
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "logs/access_log" combined
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
</IfModule>
<Directory "/var/www/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
<IfModule mime_module>
TypesConfig /etc/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
</IfModule>
AddDefaultCharset UTF-8
<IfModule mime_magic_module>
MIMEMagicFile conf/magic
</IfModule>
EnableSendfile on
IncludeOptional conf.d/*.conf
Код: Выделить всё
<VirtualHost *:80>
ServerName xn--c1ahducdoow6h.xn--p1ai
#ServerAlias www.xn--c1ahducdoow6h.xn--p1ai
DocumentRoot /home/xn--c1ahducdoow6h.xn--p1ai/www
<Directory /home/xn--c1ahducdoow6h.xn--p1ai/www>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog /home/xn--c1ahducdoow6h.xn--p1ai/logs/error.log
CustomLog /xn--c1ahducdoow6h.xn--p1ai/logs/access.log
php_admin_flag register_globals 1
php_admin_value date.timezone 'Europe/Moscow'
php_admin_value open_basedir /home/xn--c1ahducdoow6h.xn--p1ai
php_admin_value max_execution_time 60
php_admin_value upload_max_filesize 50M
php_admin_value upload_tmp_dir /home/xn--c1ahducdoow6h.xn--p1ai/tmp
php_admin_value session.save_path /home/xn--c1ahducdoow6h.xn--p1ai/tmp
</VirtualHost>
Код: Выделить всё
httpd: Syntax error on line 353 of /etc/httpd/conf/httpd.conf: Syntax error on line 19 of /etc/httpd/conf.d/xn--c1ahducdoo

С доменными именами на латинице, всё нормально. Бьюсь уже 6й час. Скоро конвульсии будут

Кто сталкивался с такой проблемой?