Fading Coder

One Final Commit for the Last Sprint

An Overview and Setup Guide for Nginx

Introduction to Nginx Nginx stands out as a high-performance HTTP and reverse proxy web server, also functioning as an IMAP/POP3/SMTP proxy server. Developed by Igor Sysoev, it was originally intended to deliver efficient and stable services for the Rambler.ru website. Nginx has gained widespread re...

Configuring Nginx for Reverse Proxy, Load Balancing, and Caching

Nginx functions as a versatile web server, capable of acting as a reverse proxy, load balancer, and cache. This guide covers configurations for these three primary applications. The setup utilizes Windows 10 with nginx-1.18.0, and an ASP.NET Core Web API developed in VS2019 serves as the test backen...

Nginx Core Concepts and Practical Configuration Guide

Nginx is a lightweight, high-performance web server and reverse proxy server developed by Igor Sysoev from Russia. It excels in handling high concurrency, with reports indicating support for up to 50,000 simultaneous connections. Nginx Features Nginx is widely adopted in internet projects due to sev...

Deploying Local Ollama-Chat Service via FRP Reverse Proxy

The core challenge is exposing a locally running large model service (openui-backend-go) to the public internet through a low-spec cloud server, enabling external access via a custom domain. Technical Architecture FRP (Fast Reverse Proxy) is used for reverse proxy tunneling. The setup involves a pub...

Cross-Platform Internal Network Penetration with FRP: Setup and Auto-Start Configuration

This guide uses a Windows machine as the client and an Ubuntu server accessible via a public IP, such as a cloud instance from providers like Tancent or Alibaba. FRP (Fast Reverse Proxy) is an internal network penetration tool designed to expose services from a private network to the public internet...

Getting Started with Nginx: Installation, Configuration, and Reverse Proxy Setup

Prerequisites and Installation First, install the necessary libraries for building Nginx from source: yum install -y pcre pcre-devel zlib zlib-devel openssl openssl-devel Download the source package (e.g., vertion 1.14.0), extract it, and compile: cd /opt/downloads tar -zxvf nginx-1.14.0.tar.gz cd n...