Nginx automatically configures and renews SSL certificates for websites through certbot

1. Background knowledge What are 1.1, http, and https? Simply put, http is a protocol for transferring web content, such as the website you see at the beginning of http http://www.163.com , the text, pictures, CSS, JS and other files on its web page are transferred to our browser through the http protocol, and then we can see them. And HTTPS ...

Posted by Jay_Seagrave on Fri, 26 Apr 2019 11:42:35 -0700

Install and configure Nginx under Centos 7

This paper is based on entos 7 installation configuration Nginx operation practice record collation. Configuration of EPEL Sources sudo yum install -y epel-release sudo yum -y update II. Installation of Nginx sudo yum install -y nginx After successful installation, the default website directory is: / usr/share/nginx/html The default configurat ...

Posted by patch2112 on Thu, 25 Apr 2019 15:21:36 -0700

04-HTTP Protocol and Static Web Server

1. HTTP Protocol Hypertext is the abbreviation of hypertext, which refers to the transcendence of text restrictions or hyperlinks, such as pictures, music, videos, hyperlinks and so on. Transferring data in HTTP protocol format is based on TCP transport protocol, and a connection needs to be established before sending data.   Role: It specifies ...

Posted by xconspirisist on Mon, 22 Apr 2019 13:18:35 -0700

Nginx Installation - Tengine

Tengine is a Web server project initiated by Taobao.com. On the basis of Nginx, it adds many advanced functions and features to meet the needs of large-scale visiting websites. Tengine's performance and stability have been well tested on large websites such as Taobao and Tianmao. Its ultimate goal is to build an efficient, stable, secure and e ...

Posted by wangsc66 on Sun, 21 Apr 2019 19:21:34 -0700

Intranet penetration/port mapping using ngrok sentence

Article directory What is ngrok? support system Start using 1. Download 2. Decompress and install 3. Create an ngrok account and configure authtoken 4. Start penetrating the Intranet Use help Follow-up What is ngrok? ngrok is a reverse proxy written in go language, which establishes a secure channel between a common en ...

Posted by mbowling on Sun, 21 Apr 2019 18:33:33 -0700

Exception handling of lapis

Exception handling of lapis Types of errors Lapis distinguishes two types of errors: recoverable and unrecoverable. Errors thrown or invoked during execution by Lua's runtime are considered unrecoverable. (This also includes Lua's built-in function assert) Because unrecoverable errors are not captured by users, Lapis captures them and prints an ...

Posted by gdogfunk on Sun, 21 Apr 2019 00:15:33 -0700

[NFS Project Actual Warfare II] Time-synchronous push backup of shared data in NFS

[NFS Project Actual Warfare II] Time-synchronous push backup of shared data in NFS Label (Space Separation): Linux Service Architecture - Chen Siqi This teaching note is a summary of my study and work career, which is the first draft (there are many imperfections), the original work, allowed to be reproduced, when reproduced, please be sure to ...

Posted by dgudema on Fri, 19 Apr 2019 18:15:33 -0700

Docker-Compose one-click deployment of Ningx+Asp.net core site+Redis

Docker-Compose manages multiple Docker containers through a configuration file, defines services in the configuration file, and then uses scripts to start, stop and restart applications, as well as services in applications and all service-dependent containers. Docker-Compose is very suitable for combining application scenarios using multiple co ...

Posted by like_duh44 on Thu, 18 Apr 2019 02:03:34 -0700

Modifying Volume Information for Online Applications in K8S Cluster

Modify NAS version: from v4 to v3 1. To modify the nfs version, the nas volume needs to be reloaded, and the pod needs to be restarted. 2. If deployment application is used, refer to the following example. If deployment application is used with pod, the deployment template of pod is changed in the following example. Pre-modification application ...

Posted by Stole on Thu, 18 Apr 2019 01:30:32 -0700

Server architecture

Ideas for solving high concurrency: 1: Hardware Hardware can use F5-bigIp 2: Software can use load balancing nginx to achieve load balancing strategy: (1) polling, load balancer forwards requests to the back web server in turn. (2) ip hash, the same address client, always requests the same host. (3) Connect the load balancer at least to which ...

Posted by magmazing on Tue, 16 Apr 2019 13:03:31 -0700