Skill set: When Nginx is acting as an agent, see which server the request is forwarded to

Source: Internet
Author: User

When using Nginx proxy for multiple servers, how do you see which server the request was forwarded to?

Upstream Demo {      server 127.0.0.1:8781;
Server 127.0.0.1:8087;
}

Add the following red configuration:

    server {        listen       ;        server_name  demo.testcas.com;        #charset Koi8-r;        #access_log  logs/host.access.log  main;        Location/{            #root   html;            #index  index.html index.htm;       add_header Backendip $upstream _addr; Add_header backendcode $upstream _status;   Proxy_pass Http://demo;        }    }

Restart Nginx, re-access, in the browser F12 view request headers information, you can see the current server IP

Skill set: When Nginx is acting as an agent, see which server the request is forwarded to

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.