首页域名资讯 正文

Nginx 自动跳转到HTTPS – HTTPS SSL 教程

2024-09-21 2 0条评论

方法一: 

rewrite ^(.*)$ https://$host$1 permanent;

方法二:
适用于 80端口和443 配置在同一个 server{}内

if ($server_port = 80) {
rewrite ^(.*)$ https://$host$1 permanent;
}

其他情况, 站点绑定很多域名,只让某个域名跳转:

set $redirect_https 1;
if ($server_port = 80) {
set $redirect_https "${redirect_https}2";
}
if ($http_host = 'www.trustauth.cn') {
set $redirect_https "${redirect_https}3";
}
if ($http_host = 'trustauth.cn') {
set $redirect_https "${redirect_https}3";
}
if ($redirect_https = "123") {
rewrite ^(.*)$ https://$host$1 permanent;
}

配置示例:

server {
listen       80;
server_name  www.trustauth.cn;
rewrite ^ https://$http_host$request_uri? permanent;
}
server {
listen 443;
 ssl  on;
ssl_certificate /etc/ssl/cacert.pem;
ssl_certificate_key /etc/ssl/privkey.pem;
server_name www.trustauth.cn;  
server_tokens off;
location / {
fastcgi_param   HTTPS               on;
fastcgi_param   HTTP_SCHEME         https;
}
}

 

文章版权及转载声明

本文作者:亿网 网址:https://edns.com/ask/post/150006.html 发布于 2024-09-21
文章转载或复制请以超链接形式并注明出处。