search
HomeOperation and MaintenanceNginxBuilding a distributed system: using Nginx Proxy Manager to implement service discovery and routing

构建分布式系统:利用Nginx Proxy Manager实现服务发现与路由

Building a distributed system: using Nginx Proxy Manager to implement service discovery and routing

Overview:
In modern distributed systems, service discovery and routing are Very important feature. Service discovery allows the system to automatically discover and register available service instances, while routing ensures that requests are correctly forwarded to the appropriate service instance. In this article, we will introduce how to leverage Nginx Proxy Manager to build a simple yet powerful service discovery and routing solution, and provide specific code examples.

  1. Understand Nginx Proxy Manager
    Nginx Proxy Manager is an Nginx-based proxy server manager that provides an easy-to-use web interface to configure and manage reverse proxy servers. It supports HTTP, HTTPS, TCP and UDP proxies, and can implement functions such as request load balancing and SSL termination.
  2. Install and configure Nginx Proxy Manager
    First, we need to install Nginx Proxy Manager. It can be installed through the following command:
npm install -g nginx-proxy-manager

After the installation is complete, you can use the following command to start Nginx Proxy Manager:

npm start

After starting, you can access http:/ through the browser /localhost:81 to open the web interface of Nginx Proxy Manager. When accessing for the first time, you need to set an administrator username and password.

  1. Configuring Service Discovery
    In the web interface of Nginx Proxy Manager, you can configure service discovery by adding "Upstreams". Each Upstream represents a service, which contains multiple instances (nodes). In each Upstream, you can specify the IP address and port number of the instance.

The following is an example Upstream configuration:

Name: my_service
Servers:
- Name: server1
  Address: 192.168.0.1:8000
- Name: server2
  Address: 192.168.0.2:8000

In this configuration, we created an Upstream named my_service, which contains two instances, namely 192.168.0.1 :8000 and 192.168.0.2:8000.

  1. Configure routing
    In the web interface of Nginx Proxy Manager, you can configure routing by adding "Proxy Hosts". Each Proxy Host represents a routing rule, which defines the source and destination of requests.

The following is a sample Proxy Host configuration:

Domain Name: mydomain.com
Path: /myroute
Upstream: my_service

In this configuration, we create a route that forwards all requests from mydomain.com/myroute to my_service Upstream rule.

  1. Using sample code
    To demonstrate the use of Nginx Proxy Manager, the following is a simple Node.js sample code to start an HTTP server and register it as an instance of the service Go to Nginx Proxy Manager:
const express = require('express');
const app = express();

app.get('/', (req, res) => {
  res.send('Hello, world!');
});

app.listen(8000, () => {
  console.log('Server is running on http://localhost:8000');
  // TODO: Register the server with Nginx Proxy Manager
});

In this sample code, we start an HTTP server listening on port 8000. In order to register the service with Nginx Proxy Manager, you need to add the corresponding registration code in the callback function that starts the server.

You can use the API provided by Nginx Proxy Manager to register and deregister service instances. The following is a sample code for registering a service instance with Nginx Proxy Manager:

const axios = require('axios');

const registerInstance = async (name, address) => {
  try {
    await axios.post('http://localhost:81/api/proxy/host', {
      name,
      target: address,
    });
    console.log(`Instance ${name} registered successfully`);
  } catch (error) {
    console.error(`Failed to register instance ${name}`, error);
  }
};

// Register the server instance with Nginx Proxy Manager
registerInstance('server1', 'http://192.168.0.1:8000');

In this sample code, we use the axios library to send HTTP requests. Register a service instance by calling the registerInstance function, passing the instance name and address to the Nginx Proxy Manager's API. You need to ensure that the address requested by the API is consistent with the actual address of Nginx Proxy Manager.

By running this sample code on multiple servers, you can register them as instances of the service and use the Nginx Proxy Manager to implement service discovery and routing.

Summary:
By using Nginx Proxy Manager to build the service discovery and routing functions of the distributed system, the configuration and management of the system can be simplified and the reliability and scalability of the system can be improved. This article introduces the installation and configuration method of Nginx Proxy Manager, and provides specific code examples to demonstrate how to register service instances and configure routing rules. Readers can further adjust and extend these code examples to meet the needs of their own distributed systems.

The above is the detailed content of Building a distributed system: using Nginx Proxy Manager to implement service discovery and routing. 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 vs. Apache: Performance, Scalability, and EfficiencyNGINX vs. Apache: Performance, Scalability, and EfficiencyApr 19, 2025 am 12:05 AM

NGINX and Apache are both powerful web servers, each with unique advantages and disadvantages in terms of performance, scalability and efficiency. 1) NGINX performs well when handling static content and reverse proxying, suitable for high concurrency scenarios. 2) Apache performs better when processing dynamic content and is suitable for projects that require rich module support. The selection of a server should be decided based on project requirements and scenarios.

The Ultimate Showdown: NGINX vs. ApacheThe Ultimate Showdown: NGINX vs. ApacheApr 18, 2025 am 12:02 AM

NGINX is suitable for handling high concurrent requests, while Apache is suitable for scenarios where complex configurations and functional extensions are required. 1.NGINX adopts an event-driven, non-blocking architecture, and is suitable for high concurrency environments. 2. Apache adopts process or thread model to provide a rich module ecosystem that is suitable for complex configuration needs.

NGINX in Action: Examples and Real-World ApplicationsNGINX in Action: Examples and Real-World ApplicationsApr 17, 2025 am 12:18 AM

NGINX can be used to improve website performance, security, and scalability. 1) As a reverse proxy and load balancer, NGINX can optimize back-end services and share traffic. 2) Through event-driven and asynchronous architecture, NGINX efficiently handles high concurrent connections. 3) Configuration files allow flexible definition of rules, such as static file service and load balancing. 4) Optimization suggestions include enabling Gzip compression, using cache and tuning the worker process.

NGINX Unit: Supporting Different Programming LanguagesNGINX Unit: Supporting Different Programming LanguagesApr 16, 2025 am 12:15 AM

NGINXUnit supports multiple programming languages ​​and is implemented through modular design. 1. Loading language module: Load the corresponding module according to the configuration file. 2. Application startup: Execute application code when the calling language runs. 3. Request processing: forward the request to the application instance. 4. Response return: Return the processed response to the client.

Choosing Between NGINX and Apache: The Right Fit for Your NeedsChoosing Between NGINX and Apache: The Right Fit for Your NeedsApr 15, 2025 am 12:04 AM

NGINX and Apache have their own advantages and disadvantages and are suitable for different scenarios. 1.NGINX is suitable for high concurrency and low resource consumption scenarios. 2. Apache is suitable for scenarios where complex configurations and rich modules are required. By comparing their core features, performance differences, and best practices, you can help you choose the server software that best suits your needs.

How to start nginxHow to start nginxApr 14, 2025 pm 01:06 PM

Question: How to start Nginx? Answer: Install Nginx Startup Nginx Verification Nginx Is Nginx Started Explore other startup options Automatically start Nginx

How to check whether nginx is startedHow to check whether nginx is startedApr 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 close nginxHow to close nginxApr 14, 2025 pm 01:00 PM

To shut down the Nginx service, follow these steps: Determine the installation type: Red Hat/CentOS (systemctl status nginx) or Debian/Ubuntu (service nginx status) Stop the service: Red Hat/CentOS (systemctl stop nginx) or Debian/Ubuntu (service nginx stop) Disable automatic startup (optional): Red Hat/CentOS (systemctl disabled nginx) or Debian/Ubuntu (syst

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

Video Face Swap

Video Face Swap

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

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.