Server installation and domain name resolution configuration of nginx reverse proxy (Linux)

brief introduction nginx is a lightweight web server and a reverse proxy server (domain name forwarding is the function of reverse proxy) 1.nginx can directly support rails and php programs 2. Can act as a reverse proxy server for HTTP 3. As a load balancing server 4. As a mail proxy server 5. Help front-end achieve dynamic a ...

Added by jana on Sun, 30 Jun 2019 05:23:32 +0300

Decompression of deflate compressed data in web pages by Zlib Library

In general, there will be a Content-Encoding field in the head of the web page request to indicate that the web page has compression algorithm enabled to improve the efficiency of web page transmission. Generally, Gzip or deflate are used as field values. In fact, deflate compression algorithm is used to compress data. Occasionally encountered ...

Added by musclehead on Sun, 23 Jun 2019 01:20:29 +0300

Nginx Series - Server Installation and Configuration

I. Installation 1. First install the missing dependency packages [root@bogon /]# yum -y install gcc gcc-c++ make libtool zlib zlib-devel openssl openssl-devel pcre pcre-devel 2. Download and decompress Nginx [root@bogon src]# wget http://nginx.org/download/nginx-1.13.3.tar.gz [root@bogon src]# tar xvf nginx-1.13.3.tar.gz [root@bogon src]# ...

Added by nade93 on Thu, 13 Jun 2019 02:17:02 +0300

Build lnmp environment

Operating system: linux Mint 18.2 Compile and install php7.2 1.Install the compiler first sudo apt install gcc automake autoconf libtool g++ #Under centos, it is yum install gcc automake autoconf libtool gcc-c++. 2.Installation of Foundation Library sudo apt install libxml2-dev openssl libssl-dev curl libcurl4-gnutls-dev libjpeg- ...

Added by phpbeginer on Wed, 12 Jun 2019 01:18:05 +0300

VueJS Source Learning: Project Structure & Directory

The source learning notes of this project are based on Vue version 1.0.9, which is also the earliest tag version. The reason for choosing this version is that it is the most original version without too much functional expansion, which is conducive to a better view of the original skeleton and context of Vue and the author's original ideas. Com ...

Added by john_zakaria on Wed, 29 May 2019 21:29:04 +0300

Introduction to nginx and detailed configuration

Introduction to Nginx Nginx is an open source high performance HTTP server and reverse proxy server that supports both IMAP/POP3/SMTP proxy services. It has the following characteristics: - It is efficient to process static files, index files, and automatic indexing. - Fast and efficient reverse proxy to improve site performance. - ...

Added by smc on Wed, 29 May 2019 11:20:03 +0300

Installation and Configuration of Nginx under CentOS

Step 1: Make sure that gcc-c++, pcre, zlib, openssl are installed on your system If not, you can use the following commands to reload all of them yum install gcc-c++ yum install pcre pcre-devel yum install zlib zlib-devel yum install openssl openssl--devel Step 2: Check if nginx is installed find -name nginx If the system alre ...

Added by djfox on Mon, 20 May 2019 03:44:10 +0300