Getting to know Nginx services

Nginx services Nginx is a high-performance, lightweight Web service software, which has the advantages of high stability, low system resource consumption and high processing capacity for HTTP concurrent connections (a single physical server can support 30000 ~ 50000 concurrent requests) Advantages of Nginx over Apache: Lightweight, also ...

Added by plinares on Tue, 11 Jan 2022 14:44:33 +0200

Compiling nginx and adding module HTTP in windows system_ gzip_ static_ module

Reference address: http://nginx.org/en/docs/howto_build_on_win32.html https://www.cnblogs.com/iamyuxing/p/10883626.html I uploaded the compiled with: http on git_ gzip_ static_ Module module version 1.20.2. You can take what you need and integrate other modules. You can also take down the code and recompile it according to the article content ...

Added by dspeer on Mon, 10 Jan 2022 15:35:03 +0200

Nginx implements cross network segment access of CDSW

90.1 presentation environment Implementation process: CM and CDH version: 5.13.1The CDSW and CDH cluster operating systems are RedHat: 7.2Nginx server: redhat6 fourLivy version: 0.4Nginx version: 1.8.6 90.2 operation demonstration 1. Install DNS service and configure pan domain name resolution The DNS service is mainly used to resolve the ...

Added by ambivalent on Mon, 10 Jan 2022 04:25:48 +0200

Kubedm builds K8S high availability cluster

Kubedm builds K8S high availability cluster (I) 1, Cluster planning ① Active and standby servers Four virtual machines are prepared, three of which are K8S high availability cluster + ETCD cluster, and kept + nginx to achieve K8S apiserver high availability. k8s-01 192.168.0.108 master+etcd+keepalived+nginx k8s-02 192.168.0.109 master+etcd+ ...

Added by shivangp on Sun, 09 Jan 2022 18:50:56 +0200

[linux] manually install nginx

Installation and compilation platform The Ubuntu platform compilation environment can use the following instructions apt-get install build-essential apt-get install libtool centos uses the following yum -y install gcc automake autoconf libtool make Install g + +: yum install gcc gcc-c++ Generally, we need to install PCRE and zlib firs ...

Added by Arez on Sat, 08 Jan 2022 19:11:39 +0200

rewrite of nginx

Rewrite of Nginx 1. What is rewrite Rewrite mainly implements url address rewriting and redirection, which is the process of redirecting incoming web requests to other URLs 2.rewrite usage scenario Address jump, users can visit www.linux.com Com this URL is to direct it to a new domain name www.baidu.com com Protocol jump: when a user request ...

Added by bobbfwed on Sat, 08 Jan 2022 04:15:21 +0200

Swagger interface document knife4j based on system authentication

preface Six months ago, a set of Swagger interface document knife4j based on business system authentication was built, which works well, so the record is built. Pain point If the Swagger like interface document framework is not used, the general company will also build a set of independent interface document projects. For example, the co ...

Added by bladx on Fri, 07 Jan 2022 21:32:04 +0200

Deploy hexo to ECS in combination with nginx + git

preface Before working on this system, my Hexo blog system was deployed in Github's hosting (the blog is not very written, but the tossing system is good 🤪), The great advantage is that it is easy and convenient, and there is no additional charge. Buying a domain name costs money for domain name resolution, but the biggest pain point is th ...

Added by random1 on Thu, 06 Jan 2022 09:06:37 +0200

Start on the basis of micro services

Introduction to microservices Microservice concept In short, microservice is an architectural design style. Its main purpose is to split the original independent system into a small service. These small services operate in independent processes, and the services communicate and cooperate through the RESTful API of HTTP. The split small se ...

Added by blintas on Wed, 05 Jan 2022 19:49:54 +0200

Idempotency of distributed interface and distributed current limiting (Guava, nginx and lua current limiting)

1, Interface idempotency Interface idempotency means that the results of one request or multiple requests initiated by the user for the same operation are consistent, and there will be no side effects due to multiple clicks. The simplest example is payment. The user pays after purchasing goods, and the payment is deducted successfully. However ...

Added by idgeit on Wed, 05 Jan 2022 11:20:16 +0200