我在同一服务器(ubuntu 10.04)上运行的Rails 3应用程序中有两个ruby,都使用SSL。
这是我的Apache配置文件:
<VirtualHost *:80>
ServerName example1.com
DocumentRoot /home/me/example1/production/current/public
</VirtualHost>
<VirtualHost *:443>
ServerName example1.com
DocumentRoot /home/me/example1/production/current/public
SSLEngine on
SSLCertificateFile /home/me/example1/production/shared/example1.crt
SSLCertificateKeyFile /home/me/example1/production/shared/example1.key
SSLCertificateChainFile /home/me/example1/production/shared/gd_bundle.crt
SSLProtocol -all +TLSv1 +SSLv3
SSLCipherSuite HIGH:MEDIUM:!aNULL:+SHA1:+MD5:+HIGH:+MEDIUM
</VirtualHost>
<VirtualHost *:80>
ServerName example2.com
DocumentRoot /home/me/example2/production/current/public
</VirtualHost>
<VirtualHost *:443>
ServerName example2.com
DocumentRoot /home/me/example2/production/current/public
SSLEngine on
SSLCertificateFile /home/me/example2/production/shared/iwanto.crt
SSLCertificateKeyFile /home/me/example2/production/shared/iwanto.key
SSLCertificateChainFile /home/me/example2/production/shared/gd_bundle.crt
SSLProtocol -all +TLSv1 +SSLv3
SSLCipherSuite HIGH:MEDIUM:!aNULL:+SHA1:+MD5:+HIGH:+MEDIUM
</VirtualHost>
有什么问题:
在重新启动服务器时,它会给我这样的输出:
* Restarting web server apache2
[Sun Jun 17 17:57:49 2012] [warn] _default_ VirtualHost overlap on port 443, the first has precedence
... waiting [Sun Jun 17 17:57:50 2012] [warn] _default_ VirtualHost overlap on port 443, the first has precedence
在谷歌搜索为什么会出现此问题时,我得到了以下信息:
您不能将基于名称的虚拟主机与SSL一起使用,因为SSL握手(当浏览器接受安全Web服务器的证书时)发生在HTTP请求之前,HTTP请求标识了适当的基于名称的虚拟主机。如果您打算使用基于名称的虚拟主机,请记住,它们只能与您的非安全Web服务器一起使用。
但是无法弄清楚如何在同一服务器上运行两个ssl应用程序。
谁能帮我?
_default_
提供的配置中没有任何虚拟主机,因此它们在其他位置。输出是apache2ctl -S
什么?(是的,如果您不需要支持运行Windows XP或其他不支持TLS SNI的客户端浏览器,则可以在不同的证书上运行多个基于SSL名称的虚拟主机。是否需要支持Windows? XP?)