1. nginx(读着: engine x)   1) nginx的官网文档《Beginer's Guide》  这个指南大体讲了三个常用配置的例子:serving static content, setting up a simple proxy server; setting up fastCGI proxy server。 首先如何启动和停止nginx. To start nginx, run the executable ...

    阅读全文
  2. 90400

    ngixn设计方向代理后,网址大部分功能能工作,但是有些访问却失败,请求返回403错误,直接访问被代理的server工作正常。只能说明一个问题,代理还有参数没有设置。 查看请求和response. 发现XSRF check failed。 最终解决方案:注意,这两个都要添加。Origin 值为proxy_pass的值相同。 # Pass the csrf token (see https://de.wikipedia.org/wiki/Cross-Site-Requ ...

    阅读全文
  3. 官方文档:http://www.nginx.cn/doc/standard/httpproxy.html   HttpProxy模块 This module makes it possible to transfer requests to another server. 此模块专伺将请求导向其它服务. It is an HTTP/1.0 proxy without the ability for keep-alive requests yet. 这是种 HTT ...

    阅读全文