2012 年五月
« 四    
 12345
6789101112
13141516171819
20212223242526
2728293031  
  • Posts Tagged ‘https’

    Squid 配置Https服务(SSL)

     

        手上有几个闲置的SSL证书,决定利用起来。

    然而我的前端服务器是基于SQUID的。所以就要涉及到Squid+SSL的配置了。

     

    第一步:生成SSL证书请求:

    openssl req -nodes -newkey rsa:2048 -keyout myserver.key -out myserver.csr 

     

    执行上述命令。然后根据提示输入相关信息。

    具体步骤见:http://yangbo.name/archives/882.html

    myserver.key 是生成的私匙,这个要自己保留!因为要配置到Squid上面的。

    myserver.csr 是生成的证书请求文件,就用这个文件去申请证书。。。

     

    第二步:配置SQUID的SSL信息。

    Read the rest of this entry »