https(全称:Hyper Text Transfer Protocol over Secure Socket Layer),是以安全为目标的 http 通道,简单讲是 http 的安全版。即 http 下加入 SSL 层,https 的安全基础是 SSL,因此加密的详细内容就需要 SSL。
个人网站用 SSL ...
本文简要介绍SSL/TLS协议的运行机制。文章的重点是设计思想和运行过程,不涉及具体的实现细节。如果想了解这方面的内容,请参阅RFC文档。
一、作用
不使用SSL/TLS的HTTP通信,就是不加密的通信。所有信息明文传播,带来了三...
<VirtualHost *:443>
ServerName www.phpabc.cn
ServerAlias phpabc.cn
DocumentRoot /xxx
ErrorLog /xxx
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
#SS...