点赞
评论
收藏
分享
举报
【转载】NGINX 配置 HTTPS 完整过程
发表于2021-10-20 12:43

浏览 6.8k

作者:创客公元


原文链接:Nginx 配置 HTTPS 完整过程


配置站点使用 https,并且将 http 重定向至 https。


1. nginx 的 ssl 模块安装

  • 查看 nginx 是否安装 http_ssl_module 模块。


$ /usr/local/nginx/sbin/nginx -V1


如果出现 configure arguments: --with-http_ssl_module, 则已安装(下面的步骤可以跳过,进入 nginx.conf 配置)。


# 下载安装包到 src 目录
$ cd /usr/local/src
$ wget http://nginx.org/download/nginx-1.14.1.tar.gz


  • 解压安装包。
$ tar -zxvf nginx-1.14.1.tar.gz


  • 配置 ssl 模块。


$ cd nginx-1.14.1
$ ./configure --prefix=/usr/local/nginx --with-http_ssl_module


  • 使用 make 命令编译(使用make install会重新安装nginx),此时当前目录会出现 objs 文件夹。
  • 用新的 nginx 文件覆盖当前的 nginx 文件。


$ cp ./objs/nginx /usr/local/nginx/sbin/


  • 再次查看安装的模块(configure arguments: --with-http_ssl_module说明ssl模块已安装)。


$ /usr/local/nginx/sbin/nginx -V


nginx version: nginx/1.14.1

configure arguments: –with-http_ssl_module


2. ssl 证书部署

  • 下载申请好的 ssl 证书文件压缩包到本地并解压(这里是用的 pem 与 key 文件,文件名可以更改)。
  • 在 nginx 目录新建 cert 文件夹存放证书文件。


$ cd /usr/local/nginx
$ mkdir cert


  • 将这两个文件上传至服务器的 cert 目录里。
    这里使用 mac 终端上传至服务器的 scp 命令(这里需要新开一个终端,不要使用连接服务器的窗口):


$ scp /Users/yourname/Downloads/ssl.pem root@xxx.xx.xxx.xx:/usr/local/nginx/cert/
$ scp /Users/yourname/Downloads/ssl.key root@xxx.xx.xxx.xx:/usr/local/nginx/cert/


scp [本地文件路径,可以直接拖文件至终端里面] [<服务器登录名>@<服务器IP地址>:<服务器上的路径>]


3. nginx.conf 配置

编辑 /usr/local/nginx/conf/nginx.conf 配置文件:


  • 配置 https server。
    注释掉之前的 http server 配置,新增 https server:


server {
# 服务器端口使用443,开启ssl, 这里ssl就是上面安装的ssl模块
listen 443 ssl;
# 域名,多个以空格分开
server_name baidu.com www.baidu.com;
<span class="hljs-comment"># ssl证书地址
<span class="hljs-attribute">ssl_certificate /usr/local/nginx/cert/ssl.pem; <span class="hljs-comment"># pem文件的路径
<span class="hljs-attribute">ssl_certificate_key /usr/local/nginx/cert/ssl.key; <span class="hljs-comment"># key文件的路径

<span class="hljs-comment"># ssl验证相关配置
<span class="hljs-attribute">ssl_session_timeout <span class="hljs-number">5m; <span class="hljs-comment">#缓存有效期
<span class="hljs-attribute">ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; <span class="hljs-comment">#加密算法
<span class="hljs-attribute">ssl_protocols TLSv1 TLSv1.<span class="hljs-number">1 TLSv1.<span class="hljs-number">2; <span class="hljs-comment">#安全链接可选的加密协议
<span class="hljs-attribute">ssl_prefer_server_ciphers <span class="hljs-literal">on; <span class="hljs-comment">#使用服务器端的首选算法

<span class="hljs-attribute">location / {
<span class="hljs-attribute">root html;
<span class="hljs-attribute">index index.html index.htm;
}


  • 将 http 重定向 https


server {
listen 80;
server_name baidu.com www.baidu.com;
return 301 https://$server_name$request_uri;
}


4. 重启 nginx

$ /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf


如果 80 端口被占用,用kill [id]来结束进程:


# 查看端口使用
$ netstat -lntp


Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:80 0.0.0.0: LISTEN 21307/nginx: master
tcp 0 0 0.0.0.0:22 0.0.0.0: LISTEN 3072/sshd
tcp 0 0 0.0.0.0:443 0.0.0.0😗 LISTEN 21307/nginx: master

# 结束 80 端口进程
$ kill 21307

再次重启 nginx :

$ /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf




















已修改于2023-03-09 04:50
创作不易,留下一份鼓励
NGINX社区小N助手

暂无个人介绍

关注



写下您的评论
发表评论
全部评论(0)

按点赞数排序

按时间排序

关于作者
NGINX社区小N助手
这家伙很懒还未留下介绍~
14
文章
0
问答
12
粉丝
相关文章
Name nginx_http_upstream_check_module-supportupstreamhealthcheckwith Nginx Synopsis http{ upstreamcluster{ #simpleround-robin server192.168.0.1:80; server192.168.0.2:80; checkinterval=5000rise=1fall=3timeout=4000; #checkinterval=3000rise=2fall=5timeout=1000type=ssl_hello; #checkinterval=3000rise=2fall=5timeout=1000type=http; #check_http_send"
点赞 0
浏览 4.3k
我们展示了如何使用 NGINX JavaScript 模块捕获有关导致错误的请求的数据,并提供了足够的详细信息用于调试和故障排除,同时不让日志中充斥着有关未发生错误的请求信息。
点赞 1
浏览 6.6k
【版本更新】NGINX JavaScript (NJS) 版本更新到 0.8.4,该版本可设置传出标头的服务器标头,并检查重复的 js_set 变量,还修复了 0.8.3 版本中引入的共享字典的 clear() 方法且没有超时,访问 NGINX 中文官方开源社区(nginx.org.cn)了解详情。
点赞 1
浏览 3.9k