Backgroud :我在ELB后面的两个网络服务器上设置了多个虚拟主机站点。每个虚拟主机站点在/ etc / httpd / ssl下都有一个ssl证书和密钥(domain.key,domain.bundle.crt)。还有一个Route53设置,它将流量引导到我的ELB和这些网络服务器。
问题:我有一个站点说site1.com和site2.com被设置为site1.com配置文件中的别名。因此,当我访问http://site2.com(http)时,与https://site2.com(https)相比,它的速度相当快。
我检查了site1.com虚拟主机日志,但没有发现任何错误我也检查了/etc/httpd/conf.modules.d下的01-cgi.conf文件,但没有找到任何MaxRequestWorkers设置
# This configuration file loads a CGI module appropriate to the MPM
# which has been configured in 00-mpm.conf. mod_cgid should be used
# with a threaded MPM; mod_cgi with the prefork MPM.
<IfModule mpm_worker_module>
LoadModule cgid_module modules/mod_cgid.so
</IfModule>
<IfModule mpm_event_module>
LoadModule cgid_module modules/mod_cgid.so
</IfModule>
<IfModule mpm_prefork_module>
LoadModule cgi_module modules/mod_cgi.so
</IfModule>
我该如何解决这个问题。