search
HomeOperation and MaintenanceNginxNginx+IIS simple deployment example analysis

Introduction to nginx:

nginx ("engine x") is a high-performance http and reverse proxy server, as well as an imap/pop3/smtp proxy server. nginx was developed by igor sysoev for rambler.ru, the second most visited site in Russia, where it has been running for over four years. igor releases the source code under a BSD-like license. In the four years since its release, nginx has become known for its stability, rich feature set, sample configuration files, and low system resource consumption. At present, nginx has been deployed on major domestic portal websites, such as Sina, NetEase, Tencent, etc.; several important domestic video sharing websites have also deployed nginx, such as Liufangfang, Ku6, etc. It has recently been discovered that nginx technology is becoming increasingly popular in China, and more and more websites are beginning to deploy nginx. This is all mentioned online.

nginx installation

nginx is a lightweight web server/reverse proxy server and email (imap/pop3) proxy server, and is installed on a bsd Published under -like license. It was developed by Russian programmer igor sysoev and is used by Rambler (Russian: рамблер), a large Russian portal website and search engine. Its characteristics are that it occupies less memory and has strong concurrency capabilities. In fact, nginx’s concurrency capabilities do perform better among web servers of the same type. Users of nginx websites in mainland China include: Baidu, Sina, NetEase, Tencent, etc.

The latest version of nginx is 1.9.3. The one I downloaded is the window version. Generally, the actual scenario is to install it under the Linux system. Since the Linux system is currently being explored, I will not introduce it here. Official download address:. After the download is completed, unzip and run nginx.exe to start nginx. After starting, you will see nginx in the process.

Nginx+IIS simple deployment example analysisNginx+IIS simple deployment example analysis

To achieve load balancing, you need to modify the configuration information of conf/nginx.conf. After modifying the configuration information, restart the nginx service. This can be achieved through the nginx -s reload command. . Here we use a batch process provided by ants to operate.

Nginx+IIS simple deployment example analysis

Put the nginx.bat file in the same folder as nginx.exe and run it directly. All files used in this article will be provided at the end of the article.

Nginx+IIS simple deployment example analysis

Site construction and configuration

1. Build two iis sites

There is only a simple index page under the site, which is used to output current server information. Since I don't have two machines, I deployed both sites to this machine and bound ports 8082 and 9000 respectively.

protected void page_load(object sender, eventargs e)
  {
   label0.text = "请求开始时间:"+datetime.now.tostring("yyyy-mm-dd hh:mm:ss");
   label1.text = "服务器名称:" + server.machinename;//服务器名称 
   label2.text = "服务器ip地址:" + request.servervariables["local_addr"];//服务器ip地址 
   label3.text = "http访问端口:" + request.servervariables["server_port"];//http访问端口"
   label4.text = ".net解释引擎版本:" + ".net clr" + environment.version.major + "." + environment.version.minor + "." + environment.version.build + "." + environment.version.revision;//.net解释引擎版本 
   label5.text = "服务器操作系统版本:" + environment.osversion.tostring();//服务器操作系统版本 
   label6.text = "服务器iis版本:" + request.servervariables["server_software"];//服务器iis版本 
   label7.text = "服务器域名:" + request.servervariables["server_name"];//服务器域名 
   label8.text = "虚拟目录的绝对路径:" + request.servervariables["appl_rhysical_path"];//虚拟目录的绝对路径 
   label9.text = "执行文件的绝对路径:" + request.servervariables["path_translated"];//执行文件的绝对路径 
   label10.text = "虚拟目录session总数:" + session.contents.count.tostring();//虚拟目录session总数 
   label11.text = "虚拟目录application总数:" + application.contents.count.tostring();//虚拟目录application总数 
   label12.text = "域名主机:" + request.servervariables["http_host"];//域名主机 
   label13.text = "服务器区域语言:" + request.servervariables["http_accept_language"];//服务器区域语言 
   label14.text = "用户信息:" + request.servervariables["http_user_agent"];
   label14.text = "cpu个数:" + environment.getenvironmentvariable("number_of_processors");//cpu个数 
   label15.text = "cpu类型:" + environment.getenvironmentvariable("processor_identifier");//cpu类型 
   label16.text = "请求来源地址:" + request.headers["x-real-ip"];
  }

2. Modify the nginx configuration information

Modify the nginx listening port and modify the listen node value under the http server. Since the local port 80 is already occupied, I changed it To listen on port 8083.

listen 8083;

Add upstream (server cluster) under the http node. The server setting is the information of the cluster server. I have built two sites here and configured them. received two pieces of information.

#服务器集群名称为jq_one
upstream jq_one {
  server 127.0.0.1:9000;
  server 127.0.0.1:8082;
}

Find the location node under the http node and modify it

location / {
root html;
index index.aspx index.html index.htm; #修改主页为index.aspx
#其中jq_one对应着upstream设置的集群名称
proxy_pass http://jq_one;
#设置主机头和客户端真实地址,以便服务器获取客户端真实ip
proxy_set_header host $host;
proxy_set_header x-real-ip $remote_addr;
proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for;
}

After modifying the configuration file, remember to restart the nginx service. The final complete configuration file information is as follows

Nginx+IIS simple deployment example analysis

3. Running results

Visit http://127.0.0.1:8083/index.aspx, visit several times, and focus on the parts marked in red.

Nginx+IIS simple deployment example analysisNginx+IIS simple deployment example analysis

As you can see, our request is distributed to the 8082 site and the 9000 site, and the first time is the 8082 site and the second time is 9000. Such a result proves that our load balancing setup was successful. Try to close 9000 of the sites, and then refresh the page and find that the output http port is always 8082, which means that one of the sites is down. As long as there is still a good site, ours can still serve.

Problem Analysis

Although we have built a load balancing site, there are still the following problems.

1. If the site uses session and the requests are evenly distributed to the two sites, then there must be a session sharing problem. How to solve it?

Use the database to save session information and use nginx to allocate requests from the same IP to the fixed server. Modify as follows. ip_hash will calculate the hash value corresponding to the ip, and then assign it to the fixed server

upstream jq_one{
 server 127.0.0.1:8082;
 server 127.0.0.1:9000;
 ip_hash;
 }

Build a redis server, and read the session from the redis server. Later articles will introduce the use of distributed cache redis

2.管理员更新站点文件,该怎么操作,现在还只有两台服务器,可以手工将文件更新到两台服务器,如果是10台呢,那么手工操作必然是不可行的

多服务器站点更新可以使用goodsync 文件同步程序,会自动检测文件的修改新增,然后同步到其它服务器上。在linux下可以使用rsync

3.站点中的文件上传功能会将文件分配到不同的服务器,文件共享问题如何解决。

使用文件服务器将所有文件存储到该服务器上,文件操作读取写入都在该服务器上。这里同样会存在一个问题,文件服务器存在读写上限。

4.负载的服务器配置不一样,有的高有的低可不可以让配置高的服务器处理请求多一些

这里讲一下,负载均衡有好几种算法 轮转法,散列法,最少连接法,最低缺失法,最快响应法,加权法。我们这里可以使用加权法来分配请求。

upstream jq_one{
  server 127.0.0.1:8082 weight=4;
   server 127.0.0.1:9000 weight=1;
  }

通过weight设置每台服务器分配请求站的权重,值越高分配的越多。

5.由于请求是经过nginx转发过来的,可以在代码里面获取到用户请求的实际ip地址吗?

答案是肯定的,在localtion节点设置如下请求头信息

#设置主机头和客户端真实地址,以便服务器获取客户端真实ip
proxy_set_header host $host;
proxy_set_header x-real-ip $remote_addr;
proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for;

代码里面通过request.headers["x-real-ip"],就能获取到真实ip

The above is the detailed content of Nginx+IIS simple deployment example analysis. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
Using NGINX: Optimizing Website Performance and ReliabilityUsing NGINX: Optimizing Website Performance and ReliabilityMay 09, 2025 am 12:19 AM

NGINX can improve website performance and reliability by: 1. Process static content as a web server; 2. forward requests as a reverse proxy server; 3. allocate requests as a load balancer; 4. Reduce backend pressure as a cache server. NGINX can significantly improve website performance through configuration optimizations such as enabling Gzip compression and adjusting connection pooling.

NGINX's Purpose: Serving Web Content and MoreNGINX's Purpose: Serving Web Content and MoreMay 08, 2025 am 12:07 AM

NGINXserveswebcontentandactsasareverseproxy,loadbalancer,andmore.1)ItefficientlyservesstaticcontentlikeHTMLandimages.2)Itfunctionsasareverseproxyandloadbalancer,distributingtrafficacrossservers.3)NGINXenhancesperformancethroughcaching.4)Itofferssecur

NGINX Unit: Streamlining Application DeploymentNGINX Unit: Streamlining Application DeploymentMay 07, 2025 am 12:08 AM

NGINXUnit simplifies application deployment with dynamic configuration and multilingual support. 1) Dynamic configuration can be modified without restarting the server. 2) Supports multiple programming languages, such as Python, PHP, and Java. 3) Adopt asynchronous non-blocking I/O model to improve high concurrency processing performance.

NGINX's Impact: Web Servers and BeyondNGINX's Impact: Web Servers and BeyondMay 06, 2025 am 12:05 AM

NGINX initially solved the C10K problem and has now developed into an all-rounder who handles load balancing, reverse proxying and API gateways. 1) It is well-known for event-driven and non-blocking architectures and is suitable for high concurrency. 2) NGINX can be used as an HTTP and reverse proxy server, supporting IMAP/POP3. 3) Its working principle is based on event-driven and asynchronous I/O models, improving performance. 4) Basic usage includes configuring virtual hosts and load balancing, and advanced usage involves complex load balancing and caching strategies. 5) Common errors include configuration syntax errors and permission issues, and debugging skills include using nginx-t command and stub_status module. 6) Performance optimization suggestions include adjusting worker parameters, using gzip compression and

Nginx Troubleshooting: Diagnosing and Resolving Common ErrorsNginx Troubleshooting: Diagnosing and Resolving Common ErrorsMay 05, 2025 am 12:09 AM

Diagnosis and solutions for common errors of Nginx include: 1. View log files, 2. Adjust configuration files, 3. Optimize performance. By analyzing logs, adjusting timeout settings and optimizing cache and load balancing, errors such as 404, 502, 504 can be effectively resolved to improve website stability and performance.

Deploying Applications with NGINX Unit: A GuideDeploying Applications with NGINX Unit: A GuideMay 04, 2025 am 12:03 AM

NGINXUnitischosenfordeployingapplicationsduetoitsflexibility,easeofuse,andabilitytohandledynamicapplications.1)ItsupportsmultipleprogramminglanguageslikePython,PHP,Node.js,andJava.2)Itallowsdynamicreconfigurationwithoutdowntime.3)ItusesJSONforconfigu

NGINX and Web Hosting: Serving Files and Managing TrafficNGINX and Web Hosting: Serving Files and Managing TrafficMay 03, 2025 am 12:14 AM

NGINX can be used to serve files and manage traffic. 1) Configure NGINX service static files: define the listening port and file directory. 2) Implement load balancing and traffic management: Use upstream module and cache policies to optimize performance.

NGINX vs. Apache: Comparing Web Server TechnologiesNGINX vs. Apache: Comparing Web Server TechnologiesMay 02, 2025 am 12:08 AM

NGINX is suitable for handling high concurrency and static content, while Apache is suitable for dynamic content and complex URL rewrites. 1.NGINX adopts an event-driven model, suitable for high concurrency. 2. Apache uses process or thread model, which is suitable for dynamic content. 3. NGINX configuration is simple, Apache configuration is complex but more flexible.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools