Nginx Installation and Configuration
Linux Tutorial
Linux TutorialLinux IntroductionLinux InstallationLinux Cloud ServerInstall Linux with WSLLinux System Boot ProcessLinux System Directory StructureLinux Forgot Password SolutionLinux Remote LoginLinux File Basic PropertiesLinux File and Directory ManagementLinux User and Group ManagementLinux Disk ManagementLinux vi/vimlinux yum commandLinux apt command
Shell Tutorial
Shell TutorialShell VariablesShell Passing ParametersShell ArraysShell OperatorsShell echo commandShell printf commandShell test commandShell Process ControlShell FunctionsShell Input/Output RedirectionShell File Include
Linux Reference Manual
Linux Command ManualNginx Installation and ConfigurationMySQL Installation and ConfigurationLinux Quiz
Linux Command Manual
MySQL Installation and Configuration![MySQL Installation and Configuration]()
In-depth Exploration
Script Language
Linux
Computer Server
Open Source
Network
Linux System
Proxy
Linux and Unix
Programming
Website Hosting and Domain Registration
Nginx Installation and Configuration
![Image 9]()
Nginx ("engine x") is a high-performance web and reverse proxy server developed by Russian programmer Igor Sysoev, and it is also an IMAP/POP3/SMTP proxy server.
In cases of high concurrent connections, Nginx is a good alternative to Apache servers.
Nginx Installation
System platform: CentOS release 6.6 (Final) 64-bit.
Step 1: Install compilation tools and library files
yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel
Step 2: First install PCRE
The role of PCRE is to enable Nginx to support Rewrite functionality.
1. Download the PCRE installation package, download address:
http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz
[root@bogon src]# cd /usr/local/src/
[root@bogon src]# wget http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz
