nginx配置ssl证书实现https访问

1、nginx.conf配置文件

server {
        listen       80;
        server_name www.abc.lynch.com abc.lynch.com;
        error_log   /usr/share/nginx/html/test/pay_local.error;
          client_max_body_size 60M;
        client_body_buffer_size 512k;
        location / {   
            root   /usr/share/nginx/html/kshop;
            index  index.html;
            autoindex  on;
        }
       # rewrite ^(.*) https://$server_name$1 permanent; 
}
server {
    listen       443    ssl;
    server_name www.abc.lynch.com abc.lynch.com;
        error_log   /usr/share/nginx/html/test/pay_local.error;
              client_max_body_size 60M;
        client_body_buffer_size 512k;
        location / {
                root   /usr/share/nginx/html/kshop;
                index  index.html;
                autoindex  on;
        }
    ssl_certificate /etc/nginx/conf.d/fullchain.pem; #证书位置
    ssl_certificate_key /etc/nginx/conf.d/privkey.pem; #私钥位置
}

 

server {
    listen       443    ssl;
    server_name www.erpshopmobilexmjservertest.xinyartech.com erpshopmobilexmjservertest.xinyartech.com;
    error_log   /usr/share/nginx/html/test/pay_local.error;
    client_max_body_size 60M;
    client_body_buffer_size 512k;
    location / {
        proxy_pass   http://172.16.92.254:8062;
    }
    ssl_certificate /etc/nginx/conf.d/fullchain.pem;
    ssl_certificate_key /etc/nginx/conf.d/privkey.pem;
}

 

2、启动nginx,映射443端口

docker run --restart=always --name nginx_erp_test -d -p 80:80 -p 443:443 -v /www/html/attachment:/www/html/attachment -v /data/nginx/html:/usr/share/nginx/html -v /data/nginx/conf/nginx.conf:/etc/nginx/nginx.conf  -v /data/nginx/logs:/var/log/nginx -v /data/nginx/conf.d:/etc/nginx/conf.d nginx

 

posted on 2019-04-08 15:56  Ruthless  阅读(12235)  评论(0编辑  收藏  举报