Apache Reverse Proxy and Load Balancing Implementation
Apache Reverse Proxy and Load Balancing
1. Reverse Proxy Overview
A reverse proxy is a server that receives requests from clients on the internet and forwards them to servers on an internal network. It then returns the server's responses to the requesting clients. From the external perspective, the reverse proxy appears as the original server ...
Posted on Sat, 12 Sep 2026 16:44:00 +0000 by Malcina
Configuring Apache HTTP Server as a Reverse Proxy and Load Balancer
The following procedure outlines the deployment of an Apache HTTP Server instance configured as a reverse proxy and load balancer for multiple backend application servers. The architecture utilizes a front-end proxy layer distributing traffic across two back-end web nodes.
Environment Preparation and Back-End Node Configuration
Initialize two L ...
Posted on Mon, 07 Sep 2026 16:18:59 +0000 by ojeffery
Essential Nginx Configuration Patterns and Examples
Nginx Configuration File Locations: The location of Nginx configuration files varies depending on the installation method.
Source Code Compilation: Typically found in /usr/local/nginx/conf directory.
Yum Installation: Usually in /etc/nginx/ directory (main configuration file) and /etc/nginx/conf.d directory.
Docker Container: Generally located ...
Posted on Sat, 08 Aug 2026 16:24:34 +0000 by nadnad
Developing and Debugging KubeSphere Extension Components
Prerequisites
KubeSphere Extension Development Guide
Setting Up the Development Environment
A running KubeSphere cluster is required. You can either use the ks-dev environment provided by KubeSphere or set up you're own cluster.
Using ks-dev Environment
Register an account at https://kubesphere.cloud/sign-up and create a cluster via the conso ...
Posted on Sun, 02 Aug 2026 16:27:34 +0000 by DoctorWho
Leveraging Nginx for Reverse Proxying, Load Balancing, and Content Separation
Nginx functions as a reverse proxy by positioning itself infront of origin servers. It intercepts client requests, forwards them to the appropriate backend server, and returns the server's response to the client. This abstraction shields the client from the direct existence of the backend infrastructure.
Load balancing is achieved using Nginx's ...
Posted on Sat, 25 Jul 2026 16:10:58 +0000 by Jezza
Nginx Configuration and Management Guide
Nginx Basics
1. Common Commands
nginx -v # Show version
ps -ef | grep nginx # List nginx processes
nginx # Start nginx
nginx -s reload # Reload configuration
nginx -s stop # Stop nginx
nginx -t # Test configuration f ...
Posted on Wed, 22 Jul 2026 16:27:50 +0000 by slayer22
Introduction to Nginx – Summary of Learning
Introduction to Nginx
Main Functions: Reverse Proxy, Load Balancing, Static/Dynamic Separation
Installlation and startup of Nginx
Common commands for Nginx, navigate to /usr/local/nginx/sbin
./nginx -- start Nginx
./nginx -s stop -- stop Nginx
./nginx -s quit -- graceful shut down Nginx
./nginx -s reload -- reload configuration, useful after ...
Posted on Mon, 06 Jul 2026 17:26:27 +0000 by thebluebus
Nginx Installation and Reverse Proxy Configuration
Nginx Overview
Nginx is a high-performance HTTP server and reverse proxy known for low memory usage and strong concurrency support. It serves static content efficiently and handles dynamic content via CGI protocols like Perl and PHP, but requires Tomcat for Java applications. Optimized for high-load environments, Nginx supports up to 50,000 con ...
Posted on Mon, 22 Jun 2026 17:47:34 +0000 by dscapuano
Comparing INFINI Gateway and Nginx as Proxies for Elasticsearch Clusters
INFINI Gateway OverviewINFINI Gateway is a specialized application gateway engineered specifically for Elasticsearch deployments, focusing on enhancing cluster performance, security, and operational manageability. Acting as a front-end proxy, it intercepts all client requests before forwarding them to backend Elasticsearch clusters, offering ad ...
Posted on Sun, 14 Jun 2026 16:55:32 +0000 by buildernaut1
Using Reverse Proxy to Handle CORS Issues
Setting Up a Vue CLI 3 Project with Axios
Create a new Vue project and install Axios:
vue create test
cd test
npm install axios
npm serve
Adding a Page with a API Request
Add a button to trigger a GET request to https://www.baidu.com/home/xman/data/tipspluslist:
<template>
<div class="hello">
<h1 @click="fet ...
Posted on Tue, 02 Jun 2026 16:57:55 +0000 by Birch