关于Apache SSLProxyEngine

伙计们,试图将我的网域代理到Google Appsbuild立的网站。

如您所知,Google网站带有以下url格式:

https://sites.google.com/site/sitename/ 

如何让http://meme.com看起来像https://sites.google.com/site/sitename/

是否有可能,以及为此网站设置域名的正确方法是什么? 如果我有meme.com,为什么这个设置不起作用?

 <VirtualHost *:443> SSLProxyEngine on RewriteEngine on ProxyPass / https://sites.google.com/site/sitename/ ProxyPassReverse / https://sites.google.com/site/sitename/ </VirtualHost> 

日志:

 [Mon Sep 10 19:22:19.829225 2012] [ssl:info] [pid 3629:tid 140571093870336] [remote 74.125.228.7:443] AH02005: SSL Proxy: Peer certificate CN mismatch: Certificate CN: *.google.com Requested hostname: sites.google.com 

closuresSSLProxyCheckPeerCN ,然后再试一次,看看会发生什么。

https://issues.apache.org/bugzilla/show_bug.cgi?id=53006

如果需要,您还需要指定证书,密钥名和CA证书,例如:

 SSLCertificateFile /path/to/your_domain_name.crt SSLCertificateKeyFile /path/to/your_private.key SSLCertificateChainFile /path/to/DigiCertCA.crt