Home Backend Development PHP Tutorial nginx configuration and installation tutorial

nginx configuration and installation tutorial

Aug 08, 2016 am 09:25 AM
html location nbsp nginx proxy

nginx configuration and installation tutorial

Nginx ("engine Nginx is powered by Igor Sysoev was developed for the second most visited Rambler.ru site in Russia. The first public version 0.1.0 was released on 2004year10month4day. It releases its source code under a BSD-like license and is known for its stability, rich feature set, sample configuration files, and low system resource consumption. 2011year6month1day,nginx 1.0.4released. Generally we need to install

pcre and zlib

first, the former is for rewritingrewrite, and the latter is for

gzip

compression.

1.Select the source code directory Selected directory /usr/local/

cd /usr/local/

2.Install the PCRE

library

cd /usr/local/

wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.21.tar.gz

tar -zxvf pcre-8.21.tar.gz

cd pcre-8.21

./configure

make

make install

3.Install the zlib

library

cd /usr/local/

wget http://zlib.net/zlib-1.2.8.tar.gz

tar -zxvf zlib-1.2.8.tar.gz cd zlib-1.2.8

./configure

make

make install

4.Install ssl

cd /usr/local/

wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz

tar -zxvf openssl-1.0.1c.tar.gz

./config

make

make install

5.Install nginx

Nginx generally has two versions, namely the stable version and the development version. You can choose one of these two versions according to your purpose. The following is to install Nginx

into the

/usr/local/nginx directory Detailed steps below:

cd /usr/local/

wget http://nginx.org/download/nginx-1.2.8.tar.gz

tar -zxvf nginx-1.2.8.tar.gz

cd nginx-1.2.8

./configure --prefix=/usr/local/nginx

make

make install

--with-pcre=/usr/src/pcre-8.21 refers to the source code path of pcre-8.21

.

--with-zlib=/usr/src/zlib-1.2.7

refers to the source code path of

zlib-1.2.7 .

6.Start

Make sure that the system’s

80 port is not occupied by other programs.

/usr/local/nginx/sbin/nginx

Check whether the startup is successful:

netstat -ano|grep 80

If the result is entered, it means the startup is successful

Open the browser to access the

IP of this machine. If the browser displays Welcome to nginx!

, it means that

Nginx has been installed and run successfully.

7.Restart

/usr/local/nginx/sbin/nginx –s reload

8.Modify configuration file

cd /usr/local/nginx/conf

vi nginx.conf

9.Common nginx configuration

#nginxRun user and group

user www www;

#Start process

, is usually set to be equal to the number of

cpu worker_processes 4;

#Global error log and PIDfile

pid /var/run/nginx.pid;

error_log /var/log/nginx/error.log;

events {

O p#Epoll is a way in multiple ways to reuse Io (I/O Multiplexing) , but only for the kernel of linux2.6 or above, , , Can greatly improve the performancenginx

use epoll;

                                                                                                                                                                                                                                            #

The maximum number of concurrent connections for a single backgroundworker processprocess

worker_connections 10240;

}

#

Set up the httpserver and use its reverse proxy function to provide load balancing support

http{

include

T Default_Type Application/OCTET-Stream;

error_page 400 403 500 502 503 504 /50x.html;

               index index.html index.shtml

          autoindex off;

fastcgi_intercept_errors on;

sendfile on;

          # These are good default values.

tcp_nopush on;

tcp_nodelay off;

          # output compression saves bandwidth

gzip off;

           #gzip_static on;

           #gzip_min_length  1k;

               gzip_http_version 1.0;

               gzip_comp_level 2;

gzip_buffers 4 16k;

               gzip_proxied any;

               gzip_disable "MSIE [1-6].";

gzip_types text/plain text/html text/css application/x-javascript application/xml application/xml+rss text/javascript;

          #gzip_vary on;

             server_name_in_redirect off;

#

Set the load balancing server list

                                                                                                                                                                                                                      upstream portals {

                                                                                                                                                                                                             server 172.16.68.134:8082 max_fails=2 fail_timeout=30s;

                                                                                                                                                                                                         server 172.16.68.135:8082 max_fails=2 fail_timeout=30s;

                                                                                                                                                                                                                                                 server 172.16.68.136:8082 max_fails=2 fail_timeout=30s;

                                                                                                                                                                                                            server 172.16.68.137:8082 max_fails=2 fail_timeout=30s;

       }

          #upstream overflow {

~

                                                                          #

        #}

           server {

                                                                                                                                                                                          ​ 

Listen 8080; A Server_name 127.0.0.1;

                                 #403, 404

page redirection address

                     error_page  403 = http://www.e100.cn/ebiz/other/217/403.html;

                     error_page  404 = http://www.e100.cn/ebiz/other/218/404.html;

proxy_connect_timeout 90;

S proxy_send_timeout 180;

Re proxy_read_timeout 180;

                   proxy_buffer_size 64k;

                   proxy_buffers 4 128k;

                   proxy_busy_buffers_size 128k;

                                                                                                                           

                       large_client_header_buffers 4 64k;

                                                                                                                                                                    

                   #proxy_read_timeout                                                                                                                                

                   #proxy_buffer_size                                                                                                                                             

                   #proxy_buffers                                                                                                                                                                                            

                  proxy_set_header Host $http_host;

                proxy_max_temp_file_size 0;

                #proxy_hide_header Set-Cookie;

                  

         #       if ($host != 'www.e100.cn' ) {

         #                rewrite ^/(.*)$ http://www.e100.cn/$1 permanent;

         #       }

 

 

               location / {

                       deny all;

               }

 

                   location ~ ^/resource/res/img/blue/space.gif {

                    proxy_pass http://tecopera;

               }

 

               location = / {

                   rewrite ^(.*)$  /ebiz/event/517.html last;

               }

 

 

 

                   location = /ebiz/event/517.html {

                    add_header Vary Accept-Encoding;

                    root /data/web/html;

                    expires 10m;

               }

 

 

 

 

               location = /check.html {

                    root /usr/local/nginx/html/;

                    access_log off;

               }

 

               location = /50x.html {

                    root /usr/local/nginx/html/;

                    expires 1m;

                    access_log off;

               }

 

 

Location = /index.html {

                                          add_header Vary Accept-Encoding;

#Define the default website root location of the server

                       root /data/web/html/ebiz;

                                                                                                                    with 10m;

            }

#Define reverse proxy access name

Location ~ ^/ecps-portal/* {

                   # expires 10m;

#Redirect cluster name

                    proxy_pass http://portals;

                        #proxy_pass http://172.16.68.134:8082;

             }

Location ~ ^/fetionLogin/* {

                   # expires 10m;

                    proxy_pass http://portals;

                        #proxy_pass http://172.16.68.134:8082;

             }

                                                                                                                        

                                                                                                                                                                                                                                        to  

                                                                                                         

                                                                                                                      

              #}

Location ~ ^/rsmanager/* {

                                                                                                                    with 10m;

                         root /data/web/;

                       #proxy_pass http://rsm;

             }

#Definition of page suffix processed by nginx

Location ~* (.*).(jpg|gif|htm|html|png|js|css)$ {

                                                                                                                                                                       Since

#The page cache time is 10minutes

10 Expires 10m;

                  }

#

Set the address to view the status of Nginx​​​​

Location ~* ^/NginxStatus/ {

                  stub_status on;

                   access_log off;

                                                                                                                                                                                                                                  allow 10.1.252.126;

                                                                                                                                                                                                                                 allow 10.248.6.49;

                                                                                                                                                                                                                      allow 127.0.0.1;

                                                                                                                                                                                           

             }

#

                                                                                                                                                                                                                                                                                                      

                                                                                                        

        #                                                                                                                                                      proxy_pass

          #                                                                                     

               access_log /data/logs/nginx/access.log combined;

                 error_log     /data/logs/nginx/error.log;

       }

            server {

Listen 8082;

                                                                                                     

               location = /check.html {

                    root /usr/local/nginx/html/;

                    access_log off;

               }

                  

        }

         server {

                   listen       8088;

                   server_name  _;

                   location ~ ^/* {

                   root /data/web/b2bhtml/;

                   access_log off;

         }                

         }

        server {

                listen       9082;

                server_name  _;

 

        #        location ~ ^/resource/* {

        #            expires 10m;

         #           root /data/web/html/;

         #       }

 

                location  / {

                     root /data/web/html/sysMaintain/;

                       if (!-f $request_filename) {

                            rewrite ^/(.*)$ /sysMaintain.html last;

                           }

                }

        }

 

}


以上就介绍了nginx 配置安装教程,包括了nginx 配置方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to configure cloud server domain name in nginx How to configure cloud server domain name in nginx Apr 14, 2025 pm 12:18 PM

How to configure an Nginx domain name on a cloud server: Create an A record pointing to the public IP address of the cloud server. Add virtual host blocks in the Nginx configuration file, specifying the listening port, domain name, and website root directory. Restart Nginx to apply the changes. Access the domain name test configuration. Other notes: Install the SSL certificate to enable HTTPS, ensure that the firewall allows port 80 traffic, and wait for DNS resolution to take effect.

How to start nginx server How to start nginx server Apr 14, 2025 pm 12:27 PM

Starting an Nginx server requires different steps according to different operating systems: Linux/Unix system: Install the Nginx package (for example, using apt-get or yum). Use systemctl to start an Nginx service (for example, sudo systemctl start nginx). Windows system: Download and install Windows binary files. Start Nginx using the nginx.exe executable (for example, nginx.exe -c conf\nginx.conf). No matter which operating system you use, you can access the server IP

How to check nginx version How to check nginx version Apr 14, 2025 am 11:57 AM

The methods that can query the Nginx version are: use the nginx -v command; view the version directive in the nginx.conf file; open the Nginx error page and view the page title.

HTML: Is It a Programming Language or Something Else? HTML: Is It a Programming Language or Something Else? Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

How to check the name of the docker container How to check the name of the docker container Apr 15, 2025 pm 12:21 PM

You can query the Docker container name by following the steps: List all containers (docker ps). Filter the container list (using the grep command). Gets the container name (located in the "NAMES" column).

How to run nginx apache How to run nginx apache Apr 14, 2025 pm 12:33 PM

To get Nginx to run Apache, you need to: 1. Install Nginx and Apache; 2. Configure the Nginx agent; 3. Start Nginx and Apache; 4. Test the configuration to ensure that you can see Apache content after accessing the domain name. In addition, you need to pay attention to other matters such as port number matching, virtual host configuration, and SSL/TLS settings.

How to check whether nginx is started How to check whether nginx is started Apr 14, 2025 pm 01:03 PM

How to confirm whether Nginx is started: 1. Use the command line: systemctl status nginx (Linux/Unix), netstat -ano | findstr 80 (Windows); 2. Check whether port 80 is open; 3. Check the Nginx startup message in the system log; 4. Use third-party tools, such as Nagios, Zabbix, and Icinga.

How to create a mirror in docker How to create a mirror in docker Apr 15, 2025 am 11:27 AM

Steps to create a Docker image: Write a Dockerfile that contains the build instructions. Build the image in the terminal, using the docker build command. Tag the image and assign names and tags using the docker tag command.

See all articles