Alicloud server installs code server to realize ipad programming and browser programming

preface What is code server Code server is a Visual Studio Code instance running on a remote server, which can be accessed through any web browser. It allows you to code with a consistent integrated development environment (IDE) anywhere and on any device, such as a tablet or laptop. As long as you deploy the code server on your own serve ...

Posted by jennifer_ann on Sun, 26 Dec 2021 21:12:06 +0100

Nginx - detailed process of website service installation

1, Nginx 1. Introduction 1.Nginx is a high-performance, lightweight Web service software 2. High stability 3. Low system resource consumption 4. The processing capacity of HTTP concurrent connections is high. A single physical server can support 30000-500 concurrent requests. Insert code slice 00 concurrent requests here 2. Differences betwe ...

Posted by xProteuSx on Sun, 26 Dec 2021 09:37:37 +0100

Five application scenarios of Nginx

1: HTTP server Nginx itself is also a static resource server. When there are only static resources, nginx can be used as the server. If a website is only a static page, it can be deployed in this way. 1. First, create an HTML directory in the document root directory, / Docroot(/usr/local/var/www), and then put a test html; 2. Configu ...

Posted by gloeilamp on Sun, 26 Dec 2021 02:55:04 +0100

Nginx -- nginx as load balancing service (load balancing policy url_hash Policy)

1, nginx scheduling algorithm as load balancing service scheduling algorithm effectPolling (default)Allocate to different back-end servers one by one in chronological orderWeighted pollingThe higher the weight value, the higher the access probability assigned to theip_hashEach request is allocated according to the hash result of the access ...

Posted by amavadia on Sun, 26 Dec 2021 02:30:01 +0100

Separate project deployment through Nginx

preface The project uses springboot as the back-end and vue as the front-end development. Briefly describe the deployment mode of the project. The operating system is CentOS7 1, Installing Nginx Nginx is a widely used and very popular server, which can be used as load balancing, reverse proxy and so on 1. Download source code Downl ...

Posted by ToolJob on Fri, 24 Dec 2021 20:03:21 +0100

Nginx learning - nginx seven layer load balancing (will you not see it yet?)

Load balancing is divided into four layers of load balancing and seven layers of load balancing The so-called four layer load balancing refers to the transport layer in the OSI reference model, which is mainly based on ip + port load balancing Realize four layer load balancing: Hardware: F5,BIG-IP,EADWARE Software: lvs,nginx,hayproxy The so-c ...

Posted by shan111 on Wed, 22 Dec 2021 20:16:19 +0100

Using Docker to deploy the front-end project practical tutorial, I've stepped on all the pits that should be stepped on for you!

Everyone's first half of life is constantly adding. But in the second half of life, we have to learn to subtract constantly. catalogue Front work 1. Things to prepare 2. Connect to ECS Install Docker environment 1. Install the dependent libraries of Docker. 2. Add the software source information of Docker CE. 3. Install Docker CE. 4. ...

Posted by bonzie on Tue, 21 Dec 2021 04:11:45 +0100

Nginx source code installation configuration

Nginx source code installation configuration Author: Yan Tao E-mail: coderyantao@qq.com Note: the experimental environment is a virtual machine, and selinux and firewalld have been closed. This installation is for novices and does not solve all problems in advance. It will show the problems and solutions. 1, Prepare Install GCC and gcc-c + ...

Posted by asmith on Mon, 20 Dec 2021 12:02:27 +0100

Deploy haproxy proxy and build a high-performance reverse proxy cluster based on nginx

1, Overview and introduction of Haproxy (1) Introduction to Haproxy Haproxy is an open source high-performance reverse proxy or one of the load balancing service software. It is also a popular cluster scheduling tool at presentIt supports dual machine hot standby, virtual host, TCP and HTTP based application proxy and other functionsFor d ...

Posted by dsds1121 on Sun, 19 Dec 2021 00:34:35 +0100

nginx of lnmp architecture

What is lnmp architecture LNMP refers to a group of free software acronyms commonly used together to run dynamic websites or servers L refers to Linux, N refers to Nginx, M generally refers to MySQL, MariaDB, P generally refers to PHP, Perl or Python LNMP represents the website server architecture of Nginx+MySQL+PHP under Linux system L ...

Posted by dino345 on Fri, 17 Dec 2021 00:18:18 +0100