nginx installation record of centos ECS

As a web and reverse server, nginx is widely used, especially for those who learn c/c + +. Today, I installed and configured nginx, which I've heard a lot of. It's mainly a personal experiment for the installation and guidance in the rookie tutorial. The main concern is that the installation of nginx depends on the upgrade of openssl. 1, Prepa ...

Added by Centrek on Sun, 20 Feb 2022 11:59:26 +0200

GoAccess lightweight nginx log analysis tool

What is GoAccess GoAccess is an open source, real-time Web log analysis tool running under the command line terminal. The tool provides fast and diverse HTTP status statistics. The analysis results can be viewed through client tools such as XShell, and Html reports can be generated. GitHub address: https://github.com/allinurl/goaccess Offi ...

Added by Nomaad on Sun, 20 Feb 2022 06:37:29 +0200

GateWay cluster deployment, load balancing with nacos and Nginx under windows

1, Configure and start nacos The purpose of configuring nacos is to realize dynamic routing and route to the corresponding service address according to the service name. First of all, you need to download a nacos 2.0.3 on the official website. For the download and installation configuration of nacos, see my other article and link https://blog ...

Added by somo on Sat, 19 Feb 2022 23:09:14 +0200

[Nginx things] description of Nginx configuration file

Profile path cd /usr/local/nginx/conf cat nginx.conf The default configuration is as follows #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; ...

Added by Humpty on Fri, 18 Feb 2022 15:23:29 +0200

Nginx+Keepalive builds load balancing and high availability

1, Prepare 10.117.201.80 and 10.117.201.81 two physical machines 2, Installation Skip the installation of Nginx. 80 and 81 need to be installed here. Refer to the previous installation documents The above two physical machines should be installed Download keepalived-2.0.15 tar. gz Unzip to / usr/local / tar -xf keepalived-2.0.15.tar.gz ...

Added by vanzkee on Thu, 17 Feb 2022 20:24:19 +0200

nacos cluster based on docker container (3 nodes)

nacos cluster based on docker container (3 nodes) 1, Preparation before installation 1.1. Server preparation Nacos cluster construction requires three or more Nacos nodes to form a cluster, so at least three server resources are required. This construction uses the three containers built by redis cluster and rocketmq cluster as three server ...

Added by wolfraider on Mon, 14 Feb 2022 08:33:40 +0200

Nginx - minimum configuration

A secure server is one that allows only the required number of servers. Ideally, we will build the server based on the smallest system by enabling other functions separately. Minimal configuration is also helpful for debugging. If the error is not available in the smallest system, add functions separately, and then continue to search for errors ...

Added by CMC on Mon, 14 Feb 2022 06:07:20 +0200

Single machine and multiple machines are configured with https certificates, and the page format of https in the whole station (taking discuz as an example) is disordered

HTTPS Basic overview of HTTPS Why use HTTPS,because HTTP Unsafe when we use http The website will be hijacked and tampered with if used https Protocol, then the data is encrypted in the transmission process, so hackers can not steal or tamper with the data message information, but also avoid information leakage during website transmissio ...

Added by friendlylad on Fri, 11 Feb 2022 19:35:50 +0200

Nginx request body is too large, error 413, request_ The body log is frequently empty, and the whole process of actual investigation

In the previous article, I used openresty to build https proxy and log printing. With the passage of time, the openresty I built has been on the company's production server. A new problem appeared on Friday, so I began to explore! So what's the problem? How to solve it? Let's look down with questions! After this problem occurred, my collea ...

Added by khaldryck on Thu, 10 Feb 2022 07:01:35 +0200

nginx installation and getting started

Reference notes: Install and configure Nginx using yum under CentOS 7 Nginx Getting Started Guide How to install nginx Install nginx using yum or up2date 1. First check the version number of Linux distribution cat /etc/redhat-release My system version is: CentOS Linux release 7.5.1804 (Core) 2.Nginx is not in the default Yum so ...

Added by nerya on Wed, 09 Feb 2022 23:26:12 +0200