我设置 Apache2 以使用虚拟主机服务多个域。目标是在一台机器上的不同 Tomcat 实例下运行 QA 和生产环境。此设置有效,但 Prod 提供的页面比 QA 慢一些,尽管代码库几乎相同且没有流量。
我首先持有 httpd.conf 配置嫌疑人,只需要了解路由是否正确。我也会介绍这些网站,但我想以此作为第一步。尽管还设置了 MySQL 实例,但在这两种情况下我都没有访问数据库,因此这不太可能成为问题。
我检查了 stackoverflow 上的其他帖子,但没有看到这个特殊的缓慢问题已经出现。想法?
httpd.conf:
<VirtualHost *:80>
ServerName www.theprodservername.com
ErrorLog logs/prod_error_log
CustomLog logs/prod_access_log common
ProxyPreserveHost On
ProxyPass / http://www.theprodservername.com:8083/
ProxyPassReverse / http://www.theprodservername.com:8083/
<Directory "/">
Options Indexes FollowSymLinks
#DirectoryIndex index.jsp
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName www.theqaservername.com
ServerAlias theqaserver.com
ErrorLog logs/qa_error_log
CustomLog logs/qa_access_log common
ProxyPreserveHost On
ProxyPass / http://www.theqaservername.com:8081/
ProxyPassReverse / http://www.theqaservername.com:8081/
<Directory "/">
Options Indexes FollowSymLinks
DirectoryIndex auth.jsp
</Directory>
</VirtualHost>
<!-- Prod server.xml -->
<Connector
port="8083"
proxyName="www.theprodservername.com"
proxyPort="80"
redirectPort="8443"
minSpareThreads="25"
connectionTimeout="20000"
maxSpareThreads="75"
maxThreads="150"
maxHttpHeaderSize="8192">
</Connector>
<!-- QA server.xml -->
<Connector
port="8081"
proxyName="www.theqaservername.com"
proxyPort="80"
redirectPort="8443"
minSpareThreads="25"
connectionTimeout="20000"
maxSpareThreads="75"
maxThreads="150"
maxHttpHeaderSize="8192">
</Connector>