一、Linux下Nginx环境配置https
1、申请SSL证书
以阿里云为例:SSL证书申请地址
![](https://img.haomeiwen.com/i16542388/ddc3cf0c076c6537.png)
![](https://img.haomeiwen.com/i16542388/8ce1e1f64cab505e.png)
![](https://img.haomeiwen.com/i16542388/8201d3d59046d89d.png)
![](https://img.haomeiwen.com/i16542388/48a4f85d5a1801ff.png)
2、在服务器/etc/nginx下创建一个ca文件夹(nginx.conf同级目录)
![](https://img.haomeiwen.com/i16542388/38e3468548bec20e.png)
![](https://img.haomeiwen.com/i16542388/e5c6fcd9b83939a4.png)
3、在conf.d中创建一个default.conf文件(没有的话先去创建)
![](https://img.haomeiwen.com/i16542388/4f488ec4bd4863f3.png)
4、在default.conf文件中配置server
![](https://img.haomeiwen.com/i16542388/3549c26cbac3d3ba.png)
具体的代码:
server {
# 1、需要修改listen监听端口 可同时监听多个 https端口为443
listen 80;
listen 443 ssl; # 运行http, https同时访问
server_name _; # 域名地址 根据实际情况进行修改
# 2、添加以下数据到server中
ssl_certificate /etc/nginx/ca/1994876_www.bgsm888.com.pem; # 证书存储地址
ssl_certificate_key /etc/nginx/ca/1994876_www.bgsm888.com.key; # 证书存储地址
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
include ecshop.conf;
location / {
root /ecmoban/www;
index index.php index.html index.htm;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
location ~* \.(eot|otf|ttf|woff|svg)$ {
root /ecmoban/www;
add_header Access-Control-Allow-Origin *;
}
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
#
location ~ \.php {
root /ecmoban/www;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(/?.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_connect_timeout 600;
fastcgi_send_timeout 600;
fastcgi_read_timeout 600;
fastcgi_buffer_size 256k;
fastcgi_buffers 16 256k;
fastcgi_busy_buffers_size 512k;
fastcgi_temp_file_write_size 512k;
}
}
5、重新加载配置文件并重启nginx
nginx -t
nginx -s reload
6、最终结果
![](https://img.haomeiwen.com/i16542388/b9637f82947b1239.png)
######################################################分割线#######################################
后续其他服务器会更新
网友评论