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
Deploying and Configuring Varnish for Static-Dynamic Content Routing on CentOS
Building Varnish from Source
Begin by preparing the required system libraries. Compile and install PCRE2 from source:
tar -xzf pcre2-10.23.tar.gz
cd pcre2-10.23
./configure --prefix=/opt/pcre2
make && make install
Update the package configuration environment variable and install remaining dependencies via YUM:
export PKG_CONFIG_PATH=/o ...
Posted on Thu, 14 May 2026 23:38:54 +0000 by nscipione
Installing and Configuring Nginx on CentOS Servers
Installing Dependencies
yum install openssl -y
yum install zlib -y
yum install pcre -y
Add the official Nginx repository:
rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
Installing Nginx
yum install nginx -y
Managing Nginx Service
systemctl start nginx # Start Nginx
systemctl restart ngi ...
Posted on Wed, 13 May 2026 07:39:36 +0000 by geo__