also needs to read books, love the full stack, and love life even more. Update original IT programming technology and daily practical technology articles every day.
Our goal is to play server web development, understand mobile terminals, and computer client is no problem.
For more original tutorials, please click above to follow or WeChat public platform: Do full stack siege lion.
Technical Communication Group: Expert Group: 538742639 Newbie Group: 572577013
This article is made from the full-stack siege lion, and is originally published. If reprinted, please declare the source.
WX: aiquanzhan
As .ne programmers mostly come into contact with windows servers. Because as a native operating system of Microsoft, it has the best support for .net.
Sometimes, we will also port the Asp and Net project to the linx platform. So how should we use ASP.NET in other operating systems? mono may be a good choice. Mono is an open source project dedicated to building a .net environment on linux. Of course, Mono supports operating systems: windows, linux, and mac os. It can be said to include almost all series of systems. At the same time, this is also a mainstream choice, so you can boldly use Mono to implement cross-platforms of .net.
At the same time, for highly concurrent access requests, it is difficult for a server to maintain normal overhead, and one server can be added to share the request. nginx is currently the mainstream load balancing server. Because Nginx is written in C, the system overhead is small. So there is no need to consider the additional overhead of nginx. The architecture block diagram is shown in the figure:
1. The user uses a browser to access the website and requests to the Nginx server. The
2.Nginx server obtains the request, allocates the optimal line according to the internal algorithm (in fact, it is to find a not busy server), and then proxy it to the web server.
We will complete the two load balancing strategies of Nginx+Mono and Nginx+IIS through two instance configurations. As shown in the figure: The following is
, using the Windows system as an example to install it. As a ported version, the Windows version is slightly lacking compared to Linux.
1. Nginx installation
download address : http://nginx.org/. Just download
. A compression package .
decompression and compression package to the hard disk, usually decompress to the non-system disk. I unzipped it to D:\nginx. As shown in the figure:
performs configuration of Nginx server. Use notepad to open nginx.conf in the conf directory.
Configure and enable:
You can change the detection port according to your own needs, I change it to 8081 here. Return to the upper directory: Open it with the command line, execute the following statement:
Command:
start nginx
and access it. 127.0.0.1: Port number. For example, mine is: 127.0.0.1:8081.
As shown in the figure, it means that nginx is enabled successfully.
2. Mono installation:
Download address: http://www.mono-project.com/download/
Select and download according to the operating system.
Double-click exe installation package:
Select all:
Write a port, be sure to remember this port, and you will use it below:
Mono is actually equivalent to a web server. Next, we forward Nginx to Mono and hand it over to mono for processing.
3. Nginx+Mono configuration
First create a aspx page:
code as above.
opens Nginx configuration.Configure to forward to mono execution: add in the server location below: Detailed code:
location ~.*\.aspx$ {
rootaspx;
fastcgi_pass 127.0.0.1:8080;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
include fastcgi_params;
}
configuration is saved, close nginx and then open:
level forced closing command:
taskkill /F /IM nginx.exe nul
Enter Mono execution command, start mono:
open the start menu, find the command software:
execution command to enable:
command:
fastcgi-mono-server4 /sockettml5=tcp:127.0.0.1:8080 /root="D:\nginx\aspx" /applications=/:. /multiplex=True /port=8081
where socket represents the port of mono and port represents the Nginx port.
At this time, access: The page is shown in the figure, which means the configuration is successful.
Nginx+Mono configuration is completed
4. Nginx+IIS
As an Asp.Net programmer, IIS is still familiar with IIS. The following example is to simply configure it into IIS. Continue to open Nginx configuration:
Remember to comment the location above. Of course, there is no mono configuration.
At this time, we close and restart the Nginx service.
opens Nginx address as shown in the figure:
, and Nginx+IIS configuration is successful.