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

解决您在不同平台环境下遇到的安装和升级问题
回复
tongsh6
帖子: 3
注册时间: 2019年 12月 24日 21:36

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

帖子 tongsh6 »

http://blog.tongshuanglong.top/install.php?config

发出这个请求后,返回200,但是response内容是空的
头像
ClayMore
帖子: 2481
注册时间: 2007年 11月 29日 02:55
来自: Sleeping Forest
联系:

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

帖子 ClayMore »

Not Found
The requested URL was not found on this server.

Apache Server at localhost Port 8787
tongsh6
帖子: 3
注册时间: 2019年 12月 24日 21:36

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

帖子 tongsh6 »

昨天没有安装成功,所以删除了,现在又部署了,但还是不可以进行下一步
tongsh6
帖子: 3
注册时间: 2019年 12月 24日 21:36

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

帖子 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;
    }
回复