Nginx配置Https

一、申请证书

可在阿里云申请免费证书,或购买更好的证书。

可参考阿里云上的教程配置。

下载证书,把证书文件放入服务器指定目录。

二、配置https

default.conf

#配置https访问
# 以下属性中以ssl开头的属性代表与证书配置有关,其他属性请根据自己的需要进行配置。
server {
    listen 443 ssl;   #SSL协议访问端口号为443。此处如未添加ssl,可能会造成Nginx无法启动。
    server_name www.xxx.net xxx.net;  #将localhost修改为您证书绑定的域名,例如:www.example.com。多个域名使用空格分开。

    #root html;
    #index index.html index.htm;
    ssl_certificate /etc/nginx/ssl/xxx/www.xxx.net.pem;   #将domain name.pem替换成您证书的文件名。
    ssl_certificate_key /etc/nginx/ssl/xxx/www.xxx.net.key;   #将domain name.key替换成您证书的密钥文件名。
    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;

    location / {
        root  /usr/share/nginx/html;   #站点目录。
        index  index.html index.htm;
    }

    #error_page  404  /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}

内容根据实际情况调整。  

三、设置HTTP请求自动跳转HTTPS (可选项)

在需要跳转的HTTP站点下添加以下rewrite语句,实现HTTP访问自动跳转到HTTPS页面。

server {
 listen 80;
 server_name localhost;   #将localhost修改为您证书绑定的域名,例如:www.example.com。
rewrite ^(.*)$ https://$host$1 permanent;   #将所有http请求通过rewrite重定向到https。
 location / {
index index.html index.htm;
}
}

示例:

#配置http
server {
    listen    80;
    server_name  www.xxx.net; #xxx.net;             #域名,多个域名使用空格分开。
    rewrite ^(.*)$ https://$host$1 permanent;   #将所有http请求通过rewrite重定向到https。

    #charset koi8-r;
    #access_log  /var/log/nginx/www.xxx.net.access.log  main;

    # 定义首页索引目录和名称
    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
        #rewrite ^/beta/(.*)$ /$1 break;
    }


    #定义错误提示页面
    #error_page  404              /404.html;

    #重定向错误页面到 /50x.html
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}

内容根据实际情况调整。

原文地址:https://www.cnblogs.com/panchanggui/p/12069077.html