Я пытаюсь использовать apache (2.4) в качестве обратного прокси для tomcat (7), который отлично работает, когда я использую только http.
http конфигурация:
<VirtualHost *:80>
ServerName abc.domain.org
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
</VirtualHost>
Это прекрасно работает.
Но когда я хочу, чтобы apache обрабатывал https, он вообще не работал. Я много чего пробовал, но в итоге увидел страницу самолета с "index of /"
Конфигурация https:
<VirtualHost *:443>
ServerName abc.domain.org
SSLEngine On
SSLCertificateFile path
SSLCertificateKeyFile path
SSLCertificateChainFile path
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
</VirtualHost>
Любая помощь или подсказки будут оценены.
Изменить: если вам нужна дополнительная информация, не стесняйтесь спрашивать.
Edit2:
Вывод apachectl -s:
VirtualHost configuration:
*:80 abc.domain.org (/etc/httpd/conf.d/proxy.conf:1)
*:443 is a NameVirtualHost
default server abc.domain.org (/etc/httpd/conf.d/ssl.conf:56)
port 443 namevhost abc.domain.org (/etc/httpd/conf.d/ssl.conf:56)
port 443 namevhost abc.domain.org (/etc/httpd/conf.d/proxy.conf:24)
ServerRoot: "/etc/httpd"
Main DocumentRoot: "/var/www/html"
Main ErrorLog: "/etc/httpd/logs/error_log"
Mutex proxy-balancer-shm: using_defaults
Mutex rewrite-map: using_defaults
Mutex authdigest-client: using_defaults
Mutex ssl-stapling: using_defaults
Mutex proxy: using_defaults
Mutex authn-socache: using_defaults
Mutex ssl-cache: using_defaults
Mutex default: dir="/run/httpd/" mechanism=default
Mutex mpm-accept: using_defaults
Mutex authdigest-opaque: using_defaults
PidFile: "/run/httpd/httpd.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG
User: name="apache" id=48
Group: name="apache" id=48
Итак, у вас есть два SSL-хоста с одинаковыми ServerName
. Это означает, что только первый получит запросы SSL.
Похоже, это какая-то форма vhost по умолчанию в /etc/httpd/conf.d/ssl.conf
который вы можете удалить.