Моя проблема кажется довольно простой, но я понятия не имею, откуда взялась проблема. У меня есть apache2, mod_jk и два приложения tomcat, main и test. Я хотел бы использовать main для «основного домена» (так что, если у меня есть URL-адрес www.mysite.com, я нахожу это главным), и если я пришлю test.mysite.com, я пойду на тест
Чтобы смоделировать это (теперь у меня только один домен), я изменил путь к main на www.mysite.com/Main, а тест к test.mysite.com/Test Проблема в том, что если я перейду на test.mysite.com/ Тестируйте, не находит.
Я использую поставщика, чтобы заботиться о существовании поддоменов, и я предполагаю, что они правильно сделали свою работу по созданию поддомена. Однако они прислали мне адрес ipv6, по которому я могу пинговать
Я работаю на 100% под https, поэтому, если пользователь запрашивает http, он перенаправляет все под https
Вопросы: Как узнать, откуда взялась проблема (мой конфиг или провайдер)? Как это решить!
Большое спасибо за твою помощь
Вот мой файл 000-default.conf:
<VirtualHost *:80>
ServerName www.mysite.com
JkMount /Main* ajp13_worker
Redirect / https://www.mysite.com/
RewriteEngine on
RewriteCond %{HTTP_HOST} ^.*?(?:www\.)?mysite\.[\w\.]+.*$
RewriteRule ^(.*?)(?:|www\.)mysite\.[\w\.]+(.*)$ https://www.mysite.com$2
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# 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
</VirtualHost>
<VirtualHost *:80>
ServerName test.mysite.com
JkMount /Test* ajp13_worker
Redirect / https://test.mysite.com/
RewriteEngine on
RewriteRule ^(.*?)test\.mysite\.[\w\.]+(.*)$ https://test.mysite.com$2
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# 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
</VirtualHost>
Ответ был прост: я определил все в 000-defaults вместо файла default-ssl. Теперь это работает