Tag

proxy

1 views collected around this technical thread.

Java Tech Enthusiast
Java Tech Enthusiast
Jun 12, 2025 · Backend Development

Why Cloudflare Replaced Nginx with Pingora: Inside the Next‑Gen Rust Proxy

This article explains how Cloudflare built Pingora, a Rust‑based HTTP proxy that outperforms Nginx in speed, efficiency, and security, detailing the architectural limits of Nginx, the decision to create a custom solution, design choices, performance gains, added features, and future plans.

BackendCloudflareHTTP
0 likes · 14 min read
Why Cloudflare Replaced Nginx with Pingora: Inside the Next‑Gen Rust Proxy
vivo Internet Technology
vivo Internet Technology
May 7, 2025 · Information Security

FunProxy: A Rust‑Based Cross‑Platform Full‑Link Testing and Proxy Tool

FunProxy is a Rust‑based, Tauri‑powered cross‑platform tool that provides high‑performance packet capture, cloud‑managed hosts and rules, collaborative sharing, and extensible plugins for full‑link testing and proxying across Windows, macOS, Linux, Android, iOS and web, delivering secure, low‑memory, fast startup testing.

Cross‑PlatformMITMTauri
0 likes · 18 min read
FunProxy: A Rust‑Based Cross‑Platform Full‑Link Testing and Proxy Tool
Linux Ops Smart Journey
Linux Ops Smart Journey
Apr 28, 2025 · Operations

Configure Jenkins Proxy with Squid for Domestic Plugin Access

This guide walks you through setting up a Squid proxy on Linux, configuring Jenkins to use the proxy, adding a domestic plugin repository, and adjusting firewall rules, enabling reliable network connectivity and plugin installation for Jenkins in environments with restricted internet access.

CI/CDJenkinsLinux
0 likes · 4 min read
Configure Jenkins Proxy with Squid for Domestic Plugin Access
Java Architecture Diary
Java Architecture Diary
Apr 25, 2025 · Artificial Intelligence

How MCP Proxy Simplifies Secure Multi‑Model AI Integration

This article explains the MCP (Model Context Protocol) and its proxy solution, detailing how it aggregates multiple AI model servers, addresses compatibility and security challenges, and provides flexible configuration, deployment, and integration options for developers building complex AI applications.

AI integrationConfigurationDeployment
0 likes · 10 min read
How MCP Proxy Simplifies Secure Multi‑Model AI Integration
Cognitive Technology Team
Cognitive Technology Team
Apr 15, 2025 · Backend Development

Common Pitfalls of Spring Transaction Management and How to Avoid Them

This article explains the typical reasons why Spring @Transactional annotations may fail—including AOP proxy limitations, method visibility, self‑invocation, exception handling, propagation settings, async execution, multiple data sources, and database constraints—and provides practical solutions to ensure reliable transaction behavior.

AOPBackendException
0 likes · 6 min read
Common Pitfalls of Spring Transaction Management and How to Avoid Them
php中文网 Courses
php中文网 Courses
Apr 14, 2025 · Backend Development

Configuring Proxy Servers and Implementing Proxy Rotation in PHP

This article explains how to configure proxy servers in PHP using cURL, stream contexts, and Guzzle, and presents several proxy rotation strategies—including simple random selection, weighted rotation with failure handling, and API‑based proxy pools—along with advanced management techniques, common issues, and best‑practice recommendations.

Backend DevelopmentGuzzlePHP
0 likes · 10 min read
Configuring Proxy Servers and Implementing Proxy Rotation in PHP
Practical DevOps Architecture
Practical DevOps Architecture
Apr 2, 2025 · Operations

Nginx Server Configuration: Proxy Pass, URL Rewrites, SSL, and Error Pages

This article provides a step‑by‑step guide to configuring Nginx for both HTTP and HTTPS, including how to set up separate proxy passes for multiple APIs, define URL rewrite rules, configure SSL certificates, and customize error page handling using concrete configuration examples.

Error HandlingNginxSSL
0 likes · 3 min read
Nginx Server Configuration: Proxy Pass, URL Rewrites, SSL, and Error Pages
Selected Java Interview Questions
Selected Java Interview Questions
Mar 28, 2025 · Information Security

A Comparative Overview of Common Intranet Penetration Tools: nps, frp, EW, and ngrok

This article introduces several widely used intranet penetration and proxy tools—including nps, frp, EW, and ngrok—explaining their core principles, key features, configuration steps, and practical usage scenarios for accessing internal services such as RDP, SSH, HTTP, and file sharing from outside networks.

Intranet PenetrationNgrokSecurity
0 likes · 13 min read
A Comparative Overview of Common Intranet Penetration Tools: nps, frp, EW, and ngrok
macrozheng
macrozheng
Mar 20, 2025 · Operations

Master Nginx Proxy Manager with Docker: Easy Setup, Static & Dynamic Proxies

Learn how to install and configure the visual Nginx management tool nginx‑proxy‑manager using Docker, set up static and dynamic proxy hosts, enable automatic SSL, and integrate it with a SpringBoot‑Vue e‑commerce project, complete with step‑by‑step commands and screenshots.

DevOpsDockerNginx
0 likes · 8 min read
Master Nginx Proxy Manager with Docker: Easy Setup, Static & Dynamic Proxies
Test Development Learning Exchange
Test Development Learning Exchange
Feb 18, 2025 · Frontend Development

Advanced Network Interception, Response Analysis, Throttling, and Proxy Configuration with Playwright

This article explains how to use Playwright to intercept and mock network requests, analyze responses, simulate various network conditions including throttling and offline mode, and configure proxy servers, providing Python code examples for comprehensive web‑application testing.

AutomationPlaywrightnetwork interception
0 likes · 6 min read
Advanced Network Interception, Response Analysis, Throttling, and Proxy Configuration with Playwright
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Dec 26, 2024 · Backend Development

Four Main Microservice Architecture Patterns Explained

This article introduces and compares four common microservice architecture patterns—aggregation, shared database, proxy (including sidecar), and asynchronous messaging—detailing their designs, advantages, disadvantages, and typical use cases for large‑scale systems.

AggregationArchitectureBackend
0 likes · 6 min read
Four Main Microservice Architecture Patterns Explained
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Dec 25, 2024 · Backend Development

RocketMQ 5.0 Architecture: Proxy Layer, POP Consumption, and Controller Mode

This article explains the architectural changes introduced in RocketMQ 5.0, including the new stateless Proxy layer, the POP consumption model, message‑level load balancing, and the Controller mode for automatic master‑slave failover, providing detailed diagrams and resource links.

ArchitectureBackendController
0 likes · 6 min read
RocketMQ 5.0 Architecture: Proxy Layer, POP Consumption, and Controller Mode
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Dec 9, 2024 · Backend Development

SpringBoot CGLIB Proxy Returns Null for Initialized Fields – Causes and Fixes

This article explains why a SpringBoot service field initialized with a value becomes null when accessed through a CGLIB proxy, analyzes the role of final methods and Objenesis in the proxy creation process, and provides three practical solutions to prevent the null value.

CglibObjenesisSpringBoot
0 likes · 8 min read
SpringBoot CGLIB Proxy Returns Null for Initialized Fields – Causes and Fixes
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Dec 6, 2024 · Frontend Development

Customizing localStorage and sessionStorage with Proxy Methods in Frontend Development

This article explains how to override the native localStorage and sessionStorage APIs in JavaScript, providing a flexible proxy layer that supports business‑specific logic, global monitoring, data protection, encryption, and configurable hooks, with practical Vue 3 integration examples.

JavaScriptStoragefrontend
0 likes · 12 min read
Customizing localStorage and sessionStorage with Proxy Methods in Frontend Development
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Nov 28, 2024 · Backend Development

Mastering Spring AOP Proxy Mechanisms: JDK vs CGLIB and Configuration Tips

This article explains how Spring AOP creates proxies using JDK dynamic proxies or CGLIB, outlines the limitations of each approach, and shows multiple ways—including XML, YAML, and annotations—to force CGLIB usage and resolve self‑invocation issues in Spring Boot applications.

AOPCglibJDK Proxy
0 likes · 8 min read
Mastering Spring AOP Proxy Mechanisms: JDK vs CGLIB and Configuration Tips
Sohu Tech Products
Sohu Tech Products
Nov 20, 2024 · Frontend Development

Comparison of Vue 2 and Vue 3 Reactivity: Object.defineProperty vs Proxy

Vue 2 implements reactivity by adding individual getters and setters with Object.defineProperty, which works for existing properties but struggles with many fields and dynamic changes, whereas Vue 3 uses a Proxy to intercept all operations on an object, delivering higher performance, automatic handling of added or removed properties, and greater flexibility for complex data structures.

JavaScriptObject.definePropertyReactivity
0 likes · 14 min read
Comparison of Vue 2 and Vue 3 Reactivity: Object.defineProperty vs Proxy
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Nov 5, 2024 · Frontend Development

Comprehensive Guide to Using iframe in Web Frontend: Responsive Sizing, Dynamic Height, Cross‑Domain Communication, and Security

This article provides a detailed tutorial on iframe usage in web front‑end development, covering responsive sizing based on the parent window, dynamic height adjustment via postMessage, handling HTTP/HTTPS mismatches, cross‑origin issues, and security considerations such as X‑Frame‑Options.

Cross-OriginNginxResponsive Design
0 likes · 13 min read
Comprehensive Guide to Using iframe in Web Frontend: Responsive Sizing, Dynamic Height, Cross‑Domain Communication, and Security
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Oct 26, 2024 · Frontend Development

Cross-Origin and Same-Origin Strategies: JSONP, CORS, Proxy, Nginx, WebSocket, postMessage, and document.domain

This article explains the concepts of cross‑origin and same‑origin policies, and demonstrates multiple solutions—including JSONP, CORS headers, proxy servers, Nginx configuration, WebSocket communication, postMessage, and document.domain—providing both front‑end and back‑end code examples for each method.

CORSCross-OriginJSONP
0 likes · 13 min read
Cross-Origin and Same-Origin Strategies: JSONP, CORS, Proxy, Nginx, WebSocket, postMessage, and document.domain
macrozheng
macrozheng
Oct 24, 2024 · Backend Development

Simplify Nginx Management: A Hands‑On Guide to Using Nginx UI with Docker

This tutorial introduces Nginx UI, a visual management tool for Nginx, explains how to install it via Docker, and demonstrates its core features—including dashboard monitoring, static and dynamic proxy configuration, and SSL management—through a step‑by‑step deployment of a SpringBoot‑Vue e‑commerce project.

BackendDockerNginx
0 likes · 9 min read
Simplify Nginx Management: A Hands‑On Guide to Using Nginx UI with Docker
Sohu Tech Products
Sohu Tech Products
Oct 18, 2024 · Backend Development

Design and Refactoring of a Java SDK with Proxy Optimization and Integration Test Enhancements

The article details how a Java SDK for a CIM instant‑messaging system was redesigned using Java 8+ features and the Builder pattern, introduced a lightweight proxy resembling RPC frameworks with dynamic‑URL support, and added comprehensive integration tests that verify automatic client reconnection and reliable message delivery across clustered servers.

Builder PatternJavaRPC
0 likes · 10 min read
Design and Refactoring of a Java SDK with Proxy Optimization and Integration Test Enhancements