嘟嘟社区

套CF问题请教


nginx配置
  1. server {  
  2.   listen 80;
  3.   server_name        www.abc.com abc.com;
  4.   return  301        https://abc.com$request_uri;
  5. }
  6. server {  
  7.   listen 443 ssl http2;
  8.   server_name abc.com;
  9.   location / {
  10.       proxy_set_header X-Real-IP $remote_addr;
  11.       proxy_set_header Host $http_host;
  12.       proxy_pass http://127.0.0.1:8080;
  13.   }
  14. }

复制代码

CF SSL设置选FULL

以上有问题吗
现在520了,怎么搞

你这本地不是没ssl么