2015-12-05 23:13:14 +08:00
|
|
|
|
RHCE 系列(八):在 Apache 上使用网络安全服务(NSS)实现 HTTPS
|
2015-09-20 10:38:26 +08:00
|
|
|
|
================================================================================
|
2015-12-05 23:13:14 +08:00
|
|
|
|
|
|
|
|
|
如果你是一个负责维护和确保 web 服务器安全的系统管理员,你需要花费最大的精力确保服务器中处理和通过的数据任何时候都受到保护。
|
|
|
|
|
|
2015-09-20 10:38:26 +08:00
|
|
|
|
![使用 SSL/TLS 设置 Apache HTTPS](http://www.tecmint.com/wp-content/uploads/2015/09/Setup-Apache-SSL-TLS-Server.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*RHCE 系列:第八部分 - 使用网络安全服务(NSS)为 Apache 通过 TLS 实现 HTTPS*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
为了在客户端和服务器之间提供更安全的连接,作为 HTTP 和 SSL(Secure Sockets Layer,安全套接层)或者最近称为 TLS(Transport Layer Security,传输层安全)的组合,产生了 HTTPS 协议。
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
由于一些严重的安全漏洞,SSL 已经被更健壮的 TLS 替代。由于这个原因,在这篇文章中我们会解析如何通过 TLS 实现你 web 服务器和客户端之间的安全连接。
|
|
|
|
|
|
|
|
|
|
这里假设你已经安装并配置好了 Apache web 服务器。如果还没有,在进入下一步之前请阅读下面站点中的文章。
|
|
|
|
|
|
|
|
|
|
- [在 RHEL/CentOS 7 上安装 LAMP(Linux,MySQL/MariaDB,Apache 和 PHP)][1]
|
|
|
|
|
|
|
|
|
|
### 安装 OpenSSL 和一些工具包 ###
|
|
|
|
|
|
|
|
|
|
首先,确保正在运行 Apache 并且允许 http 和 https 通过防火墙:
|
|
|
|
|
|
|
|
|
|
# systemctl start http
|
|
|
|
|
# systemctl enable http
|
|
|
|
|
# firewall-cmd --permanent –-add-service=http
|
|
|
|
|
# firewall-cmd --permanent –-add-service=https
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
然后安装一些必需的软件包:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
# yum update && yum install openssl mod_nss crypto-utils
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
**重要**:请注意如果你想使用 OpenSSL 库而不是 NSS(Network Security Service,网络安全服务)实现 TLS,你可以在上面的命令中用 mod\_ssl 替换 mod\_nss(使用哪一个取决于你,但在这篇文章中我们会使用 NSS,因为它更加安全,比如说,它支持最新的加密标准,比如 PKCS #11)。
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
如果你使用 mod\_nss,首先要卸载 mod\_ssl,反之如此。
|
|
|
|
|
|
|
|
|
|
# yum remove mod_ssl
|
|
|
|
|
|
|
|
|
|
### 配置 NSS(网络安全服务)###
|
|
|
|
|
|
|
|
|
|
安装完 mod\_nss 之后,会创建默认的配置文件 /etc/httpd/conf.d/nss.conf。你应该确保所有 Listen 和 VirualHost 指令都指向 443 号端口(HTTPS 默认端口):
|
|
|
|
|
|
|
|
|
|
nss.conf – 配置文件
|
|
|
|
|
|
|
|
|
|
----------
|
|
|
|
|
|
|
|
|
|
Listen 443
|
|
|
|
|
VirtualHost _default_:443
|
|
|
|
|
|
|
|
|
|
然后重启 Apache 并检查是否加载了 mod\_nss 模块:
|
|
|
|
|
|
|
|
|
|
# apachectl restart
|
|
|
|
|
# httpd -M | grep nss
|
|
|
|
|
|
|
|
|
|
![在 Apache 中检查 mod_nss 模块](http://www.tecmint.com/wp-content/uploads/2015/09/Check-Mod_NSS-Module-in-Apache.png)
|
|
|
|
|
|
|
|
|
|
检查 Apache 是否加载 mod\_nss 模块
|
|
|
|
|
|
|
|
|
|
下一步,在 `/etc/httpd/conf.d/nss.conf` 配置文件中做以下更改:
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
1、 指定 NSS 数据库目录。你可以使用默认的目录或者新建一个。本文中我们使用默认的:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
NSSCertificateDatabase /etc/httpd/alias
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
2、 通过保存密码到数据库目录中的 `/etc/httpd/nss-db-password.conf` 文件来避免每次系统启动时要手动输入密码:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
NSSPassPhraseDialog file:/etc/httpd/nss-db-password.conf
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
其中 `/etc/httpd/nss-db-password.conf` 只包含以下一行,其中 mypassword 是后面你为 NSS 数据库设置的密码:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
internal:mypassword
|
|
|
|
|
|
|
|
|
|
另外,要设置该文件的权限和属主为 0640 和 root:apache:
|
|
|
|
|
|
|
|
|
|
# chmod 640 /etc/httpd/nss-db-password.conf
|
|
|
|
|
# chgrp apache /etc/httpd/nss-db-password.conf
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
3、 由于 POODLE SSLv3 漏洞,红帽建议停用 SSL 和 TLSv1.0 之前所有版本的 TLS(更多信息可以查看[这里][2])。
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
确保 NSSProtocol 指令的每个实例都类似下面一样(如果你没有托管其它虚拟主机,很可能只有一条):
|
|
|
|
|
|
|
|
|
|
NSSProtocol TLSv1.0,TLSv1.1
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
4、 由于这是一个自签名证书,Apache 会拒绝重启,并不会识别为有效发行人。由于这个原因,对于这种特殊情况我们还需要添加:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
NSSEnforceValidCerts off
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
5、 虽然并不是严格要求,为 NSS 数据库设置一个密码同样很重要:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
# certutil -W -d /etc/httpd/alias
|
|
|
|
|
|
|
|
|
|
![为 NSS 数据库设置密码](http://www.tecmint.com/wp-content/uploads/2015/09/Set-Password-for-NSS-Database.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*为 NSS 数据库设置密码*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
### 创建一个 Apache SSL 自签名证书 ###
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
下一步,我们会创建一个自签名证书来让我们的客户机可以识别服务器(请注意这个方法对于生产环境并不是最好的选择;对于生产环境你应该考虑购买第三方可信证书机构验证的证书,例如 DigiCert)。
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
我们用 genkey 命令为 box1 创建有效期为 365 天的 NSS 兼容证书。完成这一步后:
|
|
|
|
|
|
|
|
|
|
# genkey --nss --days 365 box1
|
|
|
|
|
|
|
|
|
|
选择 Next:
|
|
|
|
|
|
|
|
|
|
![创建 Apache SSL 密钥](http://www.tecmint.com/wp-content/uploads/2015/09/Create-Apache-SSL-Key.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*创建 Apache SSL 密钥*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
你可以使用默认的密钥大小(2048),然后再次选择 Next:
|
|
|
|
|
|
|
|
|
|
![选择 Apache SSL 密钥大小](http://www.tecmint.com/wp-content/uploads/2015/09/Select-Apache-SSL-Key-Size.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*选择 Apache SSL 密钥大小*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
等待系统生成随机比特:
|
|
|
|
|
|
|
|
|
|
![生成随机密钥比特](http://www.tecmint.com/wp-content/uploads/2015/09/Generating-Random-Bits.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*生成随机密钥比特*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
为了加快速度,会提示你在控制台输入随机字符,正如下面的截图所示。请注意当没有从键盘接收到输入时进度条是如何停止的。然后,会让你选择:
|
|
|
|
|
|
|
|
|
|
1. 是否发送验证签名请求(CSR)到一个验证机构(CA):选择 No,因为这是一个自签名证书。
|
|
|
|
|
|
|
|
|
|
2. 为证书输入信息。
|
|
|
|
|
|
|
|
|
|
注:youtube 视频
|
|
|
|
|
<iframe width="720" height="405" frameborder="0" src="//www.youtube.com/embed/mgsfeNfuurA" allowfullscreen="allowfullscreen"></iframe>
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
最后,会提示你输入之前给 NSS 证书设置的密码:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
# genkey --nss --days 365 box1
|
|
|
|
|
|
|
|
|
|
![Apache NSS 证书密码](http://www.tecmint.com/wp-content/uploads/2015/09/Apache-NSS-Password.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*Apache NSS 证书密码*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
需要的话,你可以用以下命令列出现有的证书:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
# certutil –L –d /etc/httpd/alias
|
|
|
|
|
|
|
|
|
|
![列出 Apache NSS 证书](http://www.tecmint.com/wp-content/uploads/2015/09/List-Apache-Certificates.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*列出 Apache NSS 证书*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
然后通过名字删除(如果你真的需要删除的,用你自己的证书名称替换 box1):
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
# certutil -d /etc/httpd/alias -D -n "box1"
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
如果你需要继续进行的话,请继续阅读。
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
### 测试 Apache SSL HTTPS 连接 ###
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
最后,是时候测试到我们服务器的安全连接了。当你用浏览器打开 https://\<web 服务器 IP 或主机名\>,你会看到著名的信息 “This connection is untrusted”:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
![检查 Apache SSL 连接](http://www.tecmint.com/wp-content/uploads/2015/09/Check-Apache-SSL-Connection.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*检查 Apache SSL 连接*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
在上面的情况中,你可以点击添加例外(Add Exception) 然后确认安全例外(Confirm Security Exception) - 但先不要这么做。让我们首先来看看证书看它的信息是否和我们之前输入的相符(如截图所示)。
|
|
|
|
|
|
|
|
|
|
要做到这点,点击上面的视图(View...)-> 详情(Details)选项卡,当你从列表中选择发行人你应该看到这个:
|
|
|
|
|
|
|
|
|
|
![确认 Apache SSL 证书详情](http://www.tecmint.com/wp-content/uploads/2015/09/Check-Apache-SSL-Certificate-Details.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*确认 Apache SSL 证书详情*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
现在你可以继续,确认例外(限于此次或永久),然后会通过 https 把你带到你 web 服务器的 DocumentRoot 目录,在这里你可以使用你浏览器自带的开发者工具检查连接详情:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
在火狐浏览器中,你可以通过在屏幕中右击,然后从上下文菜单中选择检查元素(Inspect Element)启动开发者工具,尤其要看“网络”选项卡:
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
![检查 Apache HTTPS 连接](http://www.tecmint.com/wp-content/uploads/2015/09/Inspect-Apache-HTTPS-Connection.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*检查 Apache HTTPS 连接*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
请注意这和之前显示的在验证过程中输入的信息一致。还有一种方式通过使用命令行工具测试连接:
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
左图(测试 SSLv3):
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
# openssl s_client -connect localhost:443 -ssl3
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
右图(测试 TLS):
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
# openssl s_client -connect localhost:443 -tls1
|
|
|
|
|
|
|
|
|
|
![测试 Apache SSL 和 TLS 连接](http://www.tecmint.com/wp-content/uploads/2015/09/Testing-Apache-SSL-and-TLS.png)
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
*测试 Apache SSL 和 TLS 连接*
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
参考上面的截图了解更详细信息。
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
### 总结 ###
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
我想你已经知道,使用 HTTPS 会增加会在你站点中输入个人信息的访客的信任(从用户名和密码到任何商业/银行账户信息)。
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
在那种情况下,你会希望获得由可信验证机构签名的证书,正如我们之前解释的(步骤和设置需要启用例外的证书的步骤相同,发送 CSR 到 CA 然后获得返回的签名证书);否则,就像我们的例子中一样使用自签名证书即可。
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
要获取更多关于使用 NSS 的详情,可以参考关于 [mod-nss][3] 的在线帮助。如果你有任何疑问或评论,请告诉我们。
|
|
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
via: http://www.tecmint.com/create-apache-https-self-signed-certificate-using-nss/
|
|
|
|
|
|
|
|
|
|
作者:[Gabriel Cánepa][a]
|
|
|
|
|
译者:[ictlyh](http://www.mutouxiaogui.cn/blog/)
|
2015-12-05 23:13:14 +08:00
|
|
|
|
校对:[wxy](https://github.com/wxy)
|
2015-09-20 10:38:26 +08:00
|
|
|
|
|
|
|
|
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
|
|
|
|
2015-12-05 23:13:14 +08:00
|
|
|
|
[a]:http://www.tecmint.com/author/gacanepa/
|
|
|
|
|
[1]:https://linux.cn/article-5789-1.html
|
2015-09-20 10:38:26 +08:00
|
|
|
|
[2]:https://access.redhat.com/articles/1232123
|
|
|
|
|
[3]:https://git.fedorahosted.org/cgit/mod_nss.git/plain/docs/mod_nss.html
|