美文网首页
Nginx配置https证书

Nginx配置https证书

作者: Samlen_Tsoi | 来源:发表于2018-05-23 10:29 被阅读0次

证书配置

server {
    # 域名
    server_name xxx.xxx.com;

    # 日志
    access_log  /home/admin/logs/ichater/nginx_access.log;
    error_log   /home/admin/logs/ichater/nginx_error.log;

    ###https证书配置开始###
    listen 443 ssl;
    ssl on;
    ssl_certificate      /home/admin/develop/nginx/cert/243643646325335.pem;
    ssl_certificate_key  /home/admin/develop/nginx/cert/243643646325335.key;
    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;
    ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    ssl_prefer_server_ciphers  on; # individual nginx logs for this web vhost
    ssl_stapling on;
    ssl_stapling_verify on;
    ###https证书配置结束###
}

配置http重定向https

主要是配置一个server,建议单独一个conf文件来配置。

server {
    listen       80;
    server_name  xxx.xxx.com www.xxx.xxx.com;
    rewrite ^(.*) https://$host$1 permanent;
}

相关文章

  • # nginx https证书配置

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

  • Nginx 配置 HTTPS

    使用Nginx配置HTTPS域名证书 安装SSL模块要在 nginx 中配置 https,就必须安装 ssl 模块...

  • nginx配置https

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

  • Nginx环境下http和https(ssl)共存的方法

    给nginx配置SSL证书后(这里使用的是自己生成的测试证书,参见 nginx使用ssl模块配置HTTPS支持),...

  • Nginx配置https证书

    证书配置 配置http重定向https 主要是配置一个server,建议单独一个conf文件来配置。

  • Nginx 配置https证书

    参考文章: https://www.cnblogs.com/bincoding/p/6118270.html 1....

  • nginx配置https证书

    需要nginx开启http_ssl_module模块,基本上默认都开启 配置很简单直接上配置 获取https证书,...

  • autocert 与 nginx的配合

    autocert 负责生成SSL证书, 生成的证书配置在nginx中, nginx负责处理https请求. 使用a...

  • Nginx或tomcat8配置https

    前提申请免费域名https证书 一、nginx配置https并转发到tomcat 1、Nginx配置文件 2、 n...

  • Let’s Encrypt通配域名申请以及自动续期

    开始HTTPS之旅 获取Certbot客户端 生成证书 查看生产的证书 将证书用于nginx 在nginx的配置文...

网友评论

      本文标题:Nginx配置https证书

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