search
HomeBackend DevelopmentPHP Tutorialnginx implements reverse proxy and load balancing
nginx implements reverse proxy and load balancingJul 07, 2018 pm 04:13 PM
nginxreverse proxy

This article mainly introduces the implementation of reverse proxy and load balancing by nginx. It has certain reference value. Now I share it with you. Friends in need can refer to it.

Because it is simulated in a stand-alone environment Multiple server environment, so multiple tomcats open different ports to achieve

1. Reverse proxy

Goal: (When no port number is added, port 80 is accessed by default, so in one To achieve access to two domain names on a server, a reverse proxy is required)

1. Create tomcats directory

mkdir /usr/local/tomcats
tar -zxf apache-tomcat-7.0.47.tar.gz 
mv apache-tomcat-7.0.47 /usr/local/tomcats/tomcat1
cp -r tomcat1/ tomcat2
...

2. Modify the port

Involves three ports Modification: HTTP default port 8080 Remote server port 8005 AJP port 8009

vim conf/server.xml 
分别修改为8081  8006  8009
...

3. Simulate access to different domain names by modifying the host

这里有个小工具switchhsot可以方便的进行修改
(将ip+端口   分别与域名关联)

4. Modify nginx configuration

cd /usr/local/nginx/conf
vim nginx.conf

 upstream tomcatserver1{

server 47.94.14.93:8081;

   }
 upstream tomcatserver2{

    server 47.94.14.93:8082;

   } 
   server {
    listen       80;
    server_name  8081.kaka.com;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        proxy_pass http://tomcatserver1;
        index  index.html index.htm;
    }
}
  server {
    listen       80;
    server_name  8082.kaka.com;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        proxy_pass http://tomcatserver2;
        index  index.html index.htm;
    }
}

5. Visit the domain name set earlier and find that you can all access

2. Load balancing

  1. Under the same domain name, one server can no longer meet our needs. You need multiple servers to distribute multiple requests to different servers to reduce the pressure on the server. At this time, you need load balancing

##2. Configuration:

    (1)只需要在上面的反向代理的upstream中添加相应的server即可实现平均分配

nginx implements reverse proxy and load balancing

    (2)有时候我们负载均衡服务器的性能不同,所以分配请求的权重不同

nginx implements reverse proxy and load balancing

The above is the entire content of this article. I hope it will be helpful to everyone’s study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

Use nginx proxy to support WeChat web page authorization for different domain names

The above is the detailed content of nginx implements reverse proxy and load balancing. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Nginx反向代理中在访问控制和流量控制上的应用Nginx反向代理中在访问控制和流量控制上的应用Jun 10, 2023 pm 06:58 PM

Nginx是一款高性能、开源且多功能的Web服务器,也被广泛用作反向代理服务器。反向代理服务器可以用来提供负载平衡、高可用性、访问控制和流量控制等特性。本文将介绍Nginx反向代理中在访问控制和流量控制上的应用。一、访问控制IP地址黑名单/白名单Nginx可以通过配置IP地址黑名单或白名单来实现对请求的访问控制。黑名单中的IP地址将被拒绝访问,而白名单中的I

Nginx反向代理中的代理防篡改策略Nginx反向代理中的代理防篡改策略Jun 11, 2023 am 09:09 AM

随着互联网的发展和应用程序的不断增多,Web服务器的作用越来越重要。在数据传输过程中,反向代理服务器已成为一个非常重要的角色,它可以帮助应用程序处理一些流量控制、负载均衡、缓存数据等问题,从而提高应用程序的性能和可靠性。Nginx是一个被广泛使用的轻量级Web服务器和反向代理服务器。在使用Nginx反向代理的过程中,对代理数据的完整性和防篡改性的保障显得尤为

Nginx反向代理中基于HTTP动词和路径的ACL配置Nginx反向代理中基于HTTP动词和路径的ACL配置Jun 10, 2023 am 09:22 AM

Nginx是一款高性能的Web服务器和反向代理服务器,其强大的配置能力使得Nginx能够用于各种不同的场景。其中,基于HTTP动词和路径的ACL配置是Nginx反向代理中常用的一种方法,本文将介绍它的原理和实现方法。一、ACL的概念ACL(AccessControlList)即访问控制列表,是一种基于规则的访问控制技术。通过定义一些规则,可以对不同的访问

如何使用宝塔面板进行反向代理缓存配置如何使用宝塔面板进行反向代理缓存配置Jun 21, 2023 pm 01:06 PM

随着互联网的不断发展,网站的访问量越来越大,对于网站的性能也提出了更高的要求。反向代理缓存可以提高网站的访问速度,减轻服务器的负载,为用户提供更好的访问体验。本文将介绍如何使用宝塔面板进行反向代理缓存配置。一、什么是反向代理缓存反向代理缓存是指在服务器与客户端之间增加一个反向代理服务器,当客户端向服务器发起请求时,请求不直接发送给服务器,而是先发送给反向代理

【总结】php反向代理不能访问的常见原因和解决方法【总结】php反向代理不能访问的常见原因和解决方法Mar 21, 2023 pm 07:10 PM

在使用反向代理时,可能会遇到无法访问的问题。特别是在使用 PHP 进行反向代理时,这个问题似乎更加突出。本文将介绍这个问题的常见原因和解决方法。

Nginx反向代理中基于用户认证的ACL配置Nginx反向代理中基于用户认证的ACL配置Jun 10, 2023 pm 12:12 PM

Nginx被广泛应用于反向代理、负载均衡等场景,这些应用场景往往需要进行访问控制。Nginx提供了一种基于访问控制列表(ACL)的配置方式,可以实现对不同用户、不同IP地址、不同请求路径等进行访问控制。本文着重介绍基于用户认证的ACL配置方法,以实现身份认证和权限控制。用户认证模块Nginx提供了两种用户认证模块:ngx_http_auth_ba

Nginx反向代理中基于时间窗口的访问控制Nginx反向代理中基于时间窗口的访问控制Jun 10, 2023 pm 12:01 PM

随着互联网的发展,越来越多的应用程序部署在云端,如何保证云端服务的安全性和稳定性成为了关键问题。其中,Nginx作为一个高性能的Web服务器和反向代理,广泛应用于云端服务的部署和管理中。在实际应用中,有些场景下需要对访问进行限制,例如频繁访问的IP,恶意访问的请求,大流量的访问等等。本文将介绍一种基于时间窗口的访问控制方法,通过限制在一定时间内的访问次数,保

Gin框架中的反向代理和负载均衡详解Gin框架中的反向代理和负载均衡详解Jun 22, 2023 pm 09:43 PM

Gin框架是Golang的一种Web开发框架,许多项目都采用了该框架。当我们的项目发展到一定规模时,如何提高我们的服务可用性和性能就成了一个重要的话题。这时,反向代理和负载均衡就变得非常重要。本文将讨论Gin框架中如何使用反向代理和负载均衡来提高我们的服务可用性和性能。反向代理反向代理是指我们的服务被放在一个代理服务器的后面,客户端请求先到达代理服务器,代理

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor