TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

A forward and reverse proxy primer for the layman

2 点作者 spapas824 天前

1 comment

p_ing4 天前
Forward == bad<p>Reverse == good<p>&gt; Offloading the SSL (https) security to a particular web server. This server will store the private key of your certificate and terminate the SSL connections. It will then forward the requests to the internal web servers using plain HTTP.<p>Don&#x27;t do this if you&#x27;re passing secrets (OAuth tokens, user&#x2F;pass, etc.). Use an SSL cert between the RP and target server. SSL sessions can stay open&#x2F;re-negotiation isn&#x27;t required. Feel free to decrypt on the RP to perform inspection functions, i.e. web app firewall.<p>RPs are fun! My favorite combination is OpenBSD leveraging CARP and HAProxy. Chefs kiss of RPs.