Introduction to Nginx Nginx ("engine x") is a high-performance Web and reverse proxy server developed by Russian programmer Igor Sysoev. It is also an IMAP/POP3/SMTP proxy server. In the case of high connection concurrency, Nginx is a good alternative to Apache server. Nginx Installation 1. Install compilation tools and library files yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel 2. Install PCRE Download and unzip the source package cd installation directory ./configure make && make install //Compile and install 3. Install Nginx Download and unzip the source package cd installation directory ./configure make make install Nginx Common Commands ### In the nginx/sbin directory### ## Start nginx ./nginx ## Shut down nginx ./nginx -s stop ## Reload the configuration file./nginx -s reload Domain forwarding configuration The following is my configuration file. I only configured a simple domain name forwarding function and did not use other nginx functions. nginx is extremely powerful, and domain name forwarding is just the tip of the iceberg. ## nginx/conf/nginx.conf worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; server { listen 80; server_name www.fbm.com; location / { root html; index index.html index.htm; proxy_pass http://localhost:8080; } } server { listen 80; server_name fmp.hzfh.com; location / { proxy_pass http://fmp.hzfh.com; } } } Note: Don't forget to open the port on your firewall. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Solution to forgetting mysql password under linux
>>: How to implement the jQuery carousel function
Everyone must know the composition of the box mod...
String extraction without delimiters Question Req...
This article describes how to use the local yum s...
This article example shares the specific code of ...
Table of contents 1. What is deconstruction? 2. A...
First, let’s think about a question: To insert su...
Table of contents 1. Routing animation 2. Group Q...
Table of contents Overview 1. Hook calling order ...
Table of contents Preface VMware clone virtual ma...
1. Create and run a container docker run -it --rm...
Table of contents 1 Install Docker 2 Configuring ...
Table of contents 1. Panorama II. Background 1. R...
Things to note 1. First, you need to create a my....
concept MMM (Master-Master replication manager fo...
1. Introduction By enabling the slow query log, M...