nginx配置ssl很简单,首先需要两个文件,一个是crt文件,另一个是key文件,如下所示: xxx.crt; #(证书公钥)xxx.key; #(证书私钥) 把这两个文件放到nginx的conf文件夹下 打开nginx配置文件,添加配置段: nginx.conf全部内容如下: user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log log…