Analysis of nginx http block configuration

In the last article, we explained the storage structure of nginx http module, which is the cornerstone of our understanding of the working principle of http module. This article mainly explains how nginx builds the storage structure of http module step by step by parsing the http configuration block in nginx.conf. 1. Analysis of HTTP configurat ...

Added by xposed on Tue, 18 Feb 2020 06:21:52 +0200

Kubernetes multi node binary network deployment (example!!!)

Previous review To deploy a k8s multi node, you must first deploy a k8s cluster with a single master node For details, please refer to: blog.csdn.net/caozhengtao1213/article/details/103987039 Content of this article 1. Deploy Master2 2.Nginx load balancing deployment keepalived service 3.node no ...

Added by killsite on Sun, 09 Feb 2020 15:05:17 +0200

K8s full multi-node deployment (wirenet combat!Include troubleshooting!)

K8s Multi-node Deployment --> Load Balancing Using Nginx Service --> UI Interface Display Special note: a k8s cluster with a single master must be deployed before this experiment can beginSee my previous blog: https://blog.csdn.net/JarryZho/article/details/104193913 Environment Deployment: Related packages and documentation: Link: https ...

Added by DBHostS on Fri, 07 Feb 2020 20:01:25 +0200

Linux system architecture: dynamic and static separation between Nginx and Tomcat

1, Overview of dynamic and static separation Static and dynamic separation is to separate the static resources (HTML, JavaScript, CSS,img and other files) of the website from the background application, improve the speed of users' access to static code, and reduce the access to the background applic ...

Added by truCido on Sun, 02 Feb 2020 07:55:17 +0200

Build the basic https and wss environment of wechat applet

https://blog.csdn.net/w2456/article/details/53943080/ 1. Preparations Domain name one Free certificate (recommended: Tencent cloud, Alibaba cloud and cheap ssl are free configurations, and then download the certificate first) One Centos server nginx 1.10.2 1 2 3 4 5 2. Install nginx Installation tutorial ht ...

Added by jofield on Fri, 31 Jan 2020 14:45:08 +0200

Nginx Builds RTMP Video On Demand, Live, HLS Server

development environment Ubuntu 14.04 server nginx-1.8.1 nginx-rtmp-module Setup of Nginx Server Install dependency libraries for nginx sudo apt-get update sudo apt-get install libpcre3 libpcre3-dev sudo apt-get install openssl libssl-dev Configure and compile nginx Add the rtmp module of ngin ...

Added by kenwvs on Wed, 29 Jan 2020 03:46:27 +0200

Docker swarm single node mode

Before reading this article, make sure that you have properly containerized a machine and can deploy the container using docker compose. If not, refer to Layout document. There are two kinds of nodes in a swarm cluster, manager node and worker node. A containerized machine (either physical or virtual) ...

Added by jbdphp on Mon, 27 Jan 2020 07:56:53 +0200

Ali Cloud Kubernetes CSI Practice - CPFS Storage Volume Use

1. Preface CPFS(Cloud Paralleled File System) is a parallel file system.CPFS data is stored in multiple data nodes in the cluster and can be accessed by multiple clients at the same time, thereby providing high IOPS, high throughput, and low latency data storage services for large high performance computer clusters. Aliyun Kubernetes CSI suppor ...

Added by ofi on Thu, 23 Jan 2020 09:49:55 +0200

Jira's ultimate application: Http upgrade to Https

Demand background: Due to the increasingly strict supervision and control of network security, chrome and other browsers are forced to require https, which seems to be the general trend, so we meet the demand of upgrading the service http to https protocol. The external service of our enterprise has ...

Added by sigmadog on Tue, 21 Jan 2020 12:30:05 +0200

Docker Native Arrangement Tool - compose+consul Cluster+template

Docker Native Layout Tool 1. docker-compose concept The Compose default management object is the project, which manages the life cycle of a set of containers in the project through subcommands. The Compose project is implemented by Python, which calls the API provided by the Docker service to manage containers. Configuration steps 1. Install D ...

Added by myleow on Thu, 16 Jan 2020 01:13:00 +0200