У меня проблемы с папками, связанными с доменом и поддоменом с использованием виртуального хоста в файлах apache conf. Я попытался создать три файла конфигурации для двух доменов parxxx.fr autoxxx.fr и одного поддомена parxxx.fr available.parxxx.fr. Поэтому я переименовал файл default-0000.conf и создал три файла parxxx.conf available.conf autoxxx.conf. Я использовал команду:
sudo a2ensite xxxx.fr
для трех доменов и поддомена. Результаты autoxxx работают, но parxxx и available.parxxx используют доступную папку (папка поддомена). Я искал, но не могу найти, что делаю не так. Вот 3 файла с благодарностью.
parxxx.fr:
ServerAdmin webmaster@localhost
ServerName parxxx.fr
ServerAlias www.parxxx.fr
DocumentRoot /var/www/html/parxxx/public
<Directory "/var/www/html/parxxx/public">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
available.parxxx.fr:
<VirtualHost *:80>
ServerName accessible.parxxx.fr
DocumentRoot /var/www/html/xxx_rgaa/public
<Directory "/var/www/html/xxx_rgaa/public">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
autoxxx.fr
<VirtualHost *:80>
ServerName www.autoxxxx.fr
ServerAlias autoxxx.fr
DocumentRoot /var/www/html/autoxxx/public
<Directory "/var/www/html/autoxxx/public">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>