When writing code, you must read books, love the whole 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 p

2025/04/0304:38:36 hotcomm 1415

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:

When writing code, you must read books, love the whole 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 p - DayDayNews1. 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

When writing code, you must read books, love the whole 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 p - DayDayNews

, 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

When writing code, you must read books, love the whole 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 p - DayDayNews
When writing code, you must read books, love the whole 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 p - DayDayNews. 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:

When writing code, you must read books, love the whole 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 p - DayDayNews performs configuration of Nginx server. Use notepad to open nginx.conf in the conf directory.

When writing code, you must read books, love the whole 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 p - DayDayNews Configure and enable:

When writing code, you must read books, love the whole 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 p - DayDayNews 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:

When writing code, you must read books, love the whole 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 p - DayDayNews Command:

start nginx

and access it. 127.0.0.1: Port number. For example, mine is: 127.0.0.1:8081.

When writing code, you must read books, love the whole 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 p - DayDayNews As shown in the figure, it means that nginx is enabled successfully.

2. Mono installation:

Download address: http://www.mono-project.com/download/

When writing code, you must read books, love the whole 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 p - DayDayNews Select and download according to the operating system.

Double-click exe installation package:

When writing code, you must read books, love the whole 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 p - DayDayNews

Select all:

When writing code, you must read books, love the whole 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 p - DayDayNewsWrite a port, be sure to remember this port, and you will use it below:

When writing code, you must read books, love the whole 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 p - DayDayNewsMono 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:

When writing code, you must read books, love the whole 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 p - DayDayNews code as above.

opens Nginx configuration.Configure to forward to mono execution: add in the server location below:

When writing code, you must read books, love the whole 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 p - DayDayNews
When writing code, you must read books, love the whole 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 p - DayDayNews
When writing code, you must read books, love the whole 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 p - DayDayNews 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:

When writing code, you must read books, love the whole 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 p - DayDayNews level forced closing command:

taskkill /F /IM nginx.exe nul

Enter Mono execution command, start mono:

open the start menu, find the command software:

When writing code, you must read books, love the whole 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 p - DayDayNews execution command to enable:

When writing code, you must read books, love the whole 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 p - DayDayNews 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.

When writing code, you must read books, love the whole 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 p - DayDayNews

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:

When writing code, you must read books, love the whole 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 p - DayDayNews 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:

When writing code, you must read books, love the whole 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 p - DayDayNews, and Nginx+IIS configuration is successful.

hotcomm Category Latest News