如何在nginx反向代理中设置http代理

时间:2015-03-16 07:59:35

标签: nginx

我有一个来自Windows 8的nginx。 我想为我的nginx反向代理设置http代理。 这件事有什么解决方法吗?

1 个答案:

答案 0 :(得分:0)

您可以让nginx作为http代理工作,编辑nginx.conf这样的内容:

server {
    listen          80;
    server_name     yourdomain.com;

    location / {
      proxy_set_header X-Forwarded-Host $host;
      proxy_set_header X-Forwarded-Server $host;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_pass http://127.0.0.1:1234;

} }

also see the official documentation