美文网首页
nginx https 配置

nginx https 配置

作者: O无为学长O | 来源:发表于2022-09-23 23:06 被阅读0次

在配置 nginx 之前,需要申请证书,我的是 aliyun 的域名,在 aliyun 上可以申请免费的证书。

在 nginx 中添加证书

/etc/nginx 目录下,执行 vim nginx.conf,在 http 块中加入以下代码:

server {
    listen 80;
    listen [::]:80;

    # SSL configuration
    #
    listen 443 ssl;
    listen [::]:443 ssl;

    ssl_certificate 证书pem文件地址;
    ssl_certificate_key 证书key文件地址;
    ssl_session_timeout 5m;

    # 表示使用的加密套件的类型。
    ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;

    # 表示使用的TLS协议的类型,您需要自行评估是否配置TLSv1.1协议。
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
    ssl_prefer_server_ciphers on;

    root 站点根目录;

    # Add index.php to the list if you are using PHP
    index   index.php index.html index.htm;

    server_name 网站域名;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
    }

}

保存之后,重启 nginx 服务。

service nginx restart

相关设置

1,创建站点配置文件注意事件:
sites-available 目录创建站点配置文件之后,使用 ln -s 链接到 sites-enabled 目录时,必须都使用绝对路径。
2,如果服务器有防火墙规则,记得创建放行规则。(比如aliyun的端口允许、防火墙放行规则,如果使用的 ubuntu 还要注意检查自身的 ufw 防火墙是否开启)

相关文章

  • # nginx https证书配置

    nginx https证书配置 一 前言 此文档针对于nginx配置反向代理使用https证书方法 nginx作为...

  • nginx https 配置

    nginx https 配置

  • nginx配置https

    nginx配置https https需要的证书我们已经申请到了,下面分享下nginx配置https的一些配置参数!...

  • Nginx配置https请求,以及Nginx+keepalive

    一、Nginx配置https请求 要实现Nginx配置https请求,安装的时候需要加上 --with-http_...

  • nginx配置https

    只配置443会导致http和https共存,只要再80里配置个重定向即可return 301 https://$s...

  • nginx https配置

    本地文件上传到服务器

  • Nginx https 配置

    准备环境阿里云 腾讯云部署好站点,且使用DNS解析到云服务器的IP地址 接下来就是配置HTTPS的关键步...

  • Nginx配置HTTPS

  • Nginx 配置 https

    从云服务提供商处申请证书 申请 https 证书教程-百度经验 申请下来的证书目录结构 下文中只拿 Nginx 来...

  • NGINX 配置 HTTPS

    首先是下载证书,我的是再阿里云里面,如果购买成功了,直接下载证书。里面会有两后缀分别为.key和.pem的个文件,...

网友评论

      本文标题:nginx https 配置

      本文链接:https://www.haomeiwen.com/subject/layaortx.html