Simple nginx Reverse Proxy Server Load balancer instance

Source: Internet
Author: User
Tags nginx reverse proxy

Simple nginx reverse proxyServer Load balancerInstance

User nginx;
Worker_processes 1;

Error_log/var/log/nginx/error. Log warn;
PID/Var/run/nginx. PID;

Events {
Worker_connections 1024;
}

HTTP {
INCLude/etc/nginx/mime. types;
Default_type appliCatIon/octet-STrEAM;

Log_foRmAt Main '$ remote_aDdR-$ remote_user [$Time_ Local] "$ request "'
'$StatUS $ body_bytes_sent "$ http_referer "'
'"$ Http_user_agent" "$ http_x_forwarded_for "';

Access_log/var/log/nginx/access. Log main;

SenDFIle on;
# TCP_ Nopush on;

Keepalive_timeout 65;

# GZipOn;

Include/etc/nginx/CONF. d/*. conf;

Upstream test {
Server 192.168.10.81;
Server 192.168.10.82;
Server 192.168.10.83;
}

Server {
Listen 80;
SERVER_NAME 192.168.40.80;
Location /{
Proxy_pass http: // test;
Proxy _Set_ Header host $ host;
Proxy_set_header X-real-IP $ remote_addr;
Proxy_set_header X-forwarded-for $ proxy_add_x_forwarded_for;
}
}

}

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.