nginx访问https接口配置方法

location /aaa/ {
        proxy_pass         https://bbb.com/;
        proxy_ssl_certificate        certs/ccc.cer;
        proxy_ssl_certificate_key    certs/ccc.key;       
       
    }
原文地址:https://www.cnblogs.com/ming-question/p/14428671.html