Regarding nginx reverse proxy, I can only access the homepage?
滿天的星座
滿天的星座 2017-05-16 17:30:18
0
3
1344

nginx configuration file is as follows

server
{
        listen       80;
        server_name  jwch.dashuang.name;
        location /{
                proxy_pass      http://210.44.176.132;
                proxy_redirect  off;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header  X-Forwarded-for $proxy_add_x_forwarded_for;
        }
}

The homepage can be accessed normally, but when logging in,

is displayed.

  • is the agent of our school’s educational administration system
  • The system should be written in C# and can only be accessed through the school network
  • According to this way of writing, it is normal to proxy other websites
滿天的星座
滿天的星座

reply all(3)
淡淡烟草味

proxy_redirect off;
Try removing this line

黄舟

Object moved to here Where does that link point to?

淡淡烟草味

It is recommended to set header Host...

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template