分页: 1 / 1

安装时遇到问题,无法进行下一步

发表于 : 2019年 12月 24日 21:40
tongsh6
http://blog.tongshuanglong.top/install.php?config

发出这个请求后,返回200,但是response内容是空的

Re: 安装时遇到问题,无法进行下一步

发表于 : 2019年 12月 25日 17:38
ClayMore
Not Found
The requested URL was not found on this server.

Apache Server at localhost Port 8787

Re: 安装时遇到问题,无法进行下一步

发表于 : 2019年 12月 25日 21:16
tongsh6
昨天没有安装成功,所以删除了,现在又部署了,但还是不可以进行下一步

Re: 安装时遇到问题,无法进行下一步

发表于 : 2019年 12月 26日 18:17
tongsh6
貌似解决

因为typecho部署在内网,在外网用nginx反向代理了,之前的代理配置有问题,现在的配置如下

代码: 全选

    location / {
      proxy_pass http://localhost:8080/; #根据请求路径转发给后台服务(请求转发)
      proxy_set_header Accept-Encoding '';
      proxy_set_header Referer $http_referer;
      proxy_set_header Cookie $http_cookie;
      proxy_set_header Host $host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header X-Forwarded-Proto $scheme;
    }