欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

nginx 转将http跳转到https

程序员文章站 2022-06-27 16:58:37
nginx 转将http跳转到https ......
#websoceket 使用map
map $http_upgrade $connection_upgrade {
        default upgrade;
        ''      close;
}

upstream abc.com
{
     server 47.***.***.1:8012; 
}
server {
    listen 80;
     server_name www.abc.com  abc.com;
    rewrite ^(.*) https://$host$1 permanent;
}
server
        {
                listen 443 ssl;
                server_name www.abc.com  abc.com;
                index index.html index.htm index.php;
                  ssl on;  
        ssl_certificate         /etc/letsencrypt/live/www.abc.com/fullchain.pem;
        ssl_certificate_key     /etc/letsencrypt/live/www.abc.com/privkey.pem; 
        ssl_session_timeout 5m;
        ssl_protocols tlsv1 tlsv1.1 tlsv1.2; 
        ssl_ciphers aesgcm:all:!dh:!export:!rc4:+high:!medium:!low:!anull:!enull;
        ssl_prefer_server_ciphers   on;

                location /
                {
            proxy_pass http://abc.com;             
            proxy_set_header   x-real-ip            $remote_addr;
            proxy_set_header   x-forwarded-for  $proxy_add_x_forwarded_for;
            proxy_set_header   host                   $http_host;
            proxy_set_header   x-nginx-proxy    true;
            proxy_set_header   connection "";
            proxy_http_version 1.1;
            
            proxy_connect_timeout 1; 
            proxy_send_timeout 30; 
            proxy_read_timeout 60;
            
                }
        error_log   logs/abc_error.log;

  }