weishanyun
配置https  证书推荐使用腾讯云的免费证书,当然也可以使用openssl自己生成不过会有问题
 
nginx配置https配置
 
server {
  listen 443;
  server_name www.my.com; # 项目域名
 
  ssl on;
  ssl_certificate /etc/nginx/conf.d/key/1_admin.yi-insurance.com_bundle.crt; #(证书公钥)
  ssl_certificate_key /etc/nginx/conf.d/key/2_admin.yi-insurance.com.key; #(证书私钥)
 
  ssl_session_timeout 5m;
  ssl_protocols SSLv2 SSLv3 TLSv1;
  ssl_ciphers HIGH:!aNULL:!MD5;
  ssl_prefer_server_ciphers on;
 
 
  location / {
  root /home/www/www.my.com/public/;
  index index.htm index.html index.php;
  #访问路径的文件不存在则重写URL转交给ThinkPHP处理
  if (!-e $request_filename) {
  rewrite ^/(.*)$ /index.php/$1 last;
  break;
  }
  }
  location ~ \.php/?.*$ {
  root /home/www/www.my.com/public/;
  fastcgi_pass 127.0.0.1:9000;
  fastcgi_index index.php;
  #加载Nginx默认"服务器环境变量"配置
  include fastcgi_params;
  #设置PATH_INFO并改写SCRIPT_FILENAME,SCRIPT_NAME服务器环境变量
  set $fastcgi_script_name2 $fastcgi_script_name;
  if ($fastcgi_script_name ~ "^(.+\.php)(/.+)$") {
  set $fastcgi_script_name2 $1;
  set $path_info $2;
  }
  fastcgi_param PATH_INFO $path_info;
  fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name2;
  fastcgi_param SCRIPT_NAME $fastcgi_script_name2;
  }
}
 
http强制跳转https
 
server{
  listen 80;
  server_name www.my.com; # 项目域名
  #rewrite ^/(.*) https://www.my.com$1 permanent;
  location /{
         proxy_pass https://www.my.com;#代理
  }
}

分类:

php

技术点:

相关文章:

  • 2021-04-19
  • 2021-11-26
  • 2021-04-10
  • 2021-10-05
  • 2022-01-08
  • 2021-07-02
  • 2021-12-22
  • 2021-12-21
猜你喜欢
  • 2021-10-02
  • 2021-12-18
  • 2021-11-18
  • 2021-08-20
  • 2021-09-05
  • 2021-10-23
相关资源
相似解决方案