kubernetes introduction practice - Ingress
ㅤㅤㅤ ㅤㅤㅤ ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ (reading without thinking is equal to eating without digesting. -- Polk) ㅤㅤㅤ ㅤㅤㅤ ㅤㅤㅤㅤㅤㅤㅤㅤㅤ This tutorial demonstrates how to use ingress-nginx To do cluster load balancing, domain name access and ssl.
Ingress
Ingress is an API object that manages the external access of s ...
Posted by sb on Tue, 04 Jan 2022 08:53:25 +0100
Nginx memory pool doesn't understand? This article takes you to see the memory pool of high-performance server
nginx memory pool_ pool_ t
Nginx implements its own memory pool, so in nginx_ pool_ T this structure can be seen everywhere. Here we mainly analyze the allocation logic of memory pool.
The memory pool implements the processing of several resources, including small memory, large memory and cleaning resources. It should cover the vast majority ...
Posted by coelex on Tue, 04 Jan 2022 03:35:05 +0100
Install redis, nacos, tomcat, JDK and nginx under Linux, and deploy the front-end and back-end separated project running environment
This paper mainly records how to build a system running environment under Linux environment, mainly using redis, nacos, tomcat, JDK and nginx
Tip: the following is the main content of this article. The following cases can be used for reference
preface
Download the compressed package first Link: https://pan.baidu.com/s/1a3y3sKzP0fTddD ...
Posted by mepaco on Tue, 04 Jan 2022 03:30:25 +0100
Using OpenResty to build a simple file server
preface
Use nginx + nginx a few days ago_ upload_ Module + python (callback handler) builds a simple file server. Many people on the Internet recommend using Lua to extend the functions of nginx, so they ponder how to use Lua language to expand the functions of nginx. After consulting many materials on the Internet, they find that the environm ...
Posted by juline on Tue, 04 Jan 2022 00:03:02 +0100
Configuring proxy in nginx_ pass
nginx http proxy
Via proxy_set_header, which returns the real IP address and port of the client instead of the proxy host IP
server { listen 80; location / { proxy_set_header Host
h
o
s
t
:
...
Posted by turdferguson on Mon, 03 Jan 2022 08:48:29 +0100
Pre and post deployment of spring Vue + boot project
preface
This blog post mainly wants to connect the basic processes and key points of front-end and back-end development and server deployment. It does not involve very deep things in the development content and technology used, but although the sparrow has all the small and five internal organs, it is completely convenient for students who ...
Posted by wayz1229 on Sun, 02 Jan 2022 21:15:13 +0100
Alicloud server installation and deployment (ubuntu)
Set root password for the first timesudo passwd root1, Installing nginx1. Apt get installation commandsudo apt-get install nginxError: "Unable to locate package nginx"Solution: execute the command before installation to update the software sourcesudo apt-get updateLocation of nginx files after installation:/usr/sbin/nginx: main progra ...
Posted by alliance on Sat, 01 Jan 2022 05:25:51 +0100
netty series: come on, teach you how to make a simple proxy server
brief introduction
Einstein said: all greatness comes from simple details. netty provides us with such powerful eventloop and channel. Through the effective use of these simple things, we can get very powerful applications, such as the agent to be talked about today.
Proxy and reverse proxy
I believe that as long as programmers should ha ...
Posted by markmuir on Wed, 29 Dec 2021 01:21:53 +0100
Functions and features of Nginx
Functions and features of Nginx
Original 2021-12-22 20:12· Pears smell like milk
In the past 10 years, nginx has risen rapidly as a new generation in the Web server industry. Nginx was written by Igor Sysoev, a Russian engineer, and the first public version: 1.0.0 was released on October 4, 2004 1. Apache has always occupied the first ...
Posted by php_coder_dvo on Mon, 27 Dec 2021 23:58:41 +0100
CentOS 7 compiling and installing lnmp environment (Chapter 1 of nginx)
1: Nginx installation configuration 1. Install compilation tools and library files yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel 2. First install PCRE PCRE is used to enable Nginx to support Rewrite. Download the PCRE installation package at: http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz E ...
Posted by shiranwas on Mon, 27 Dec 2021 21:24:04 +0100