rp header

main
Basit Ali 2022-09-27 17:12:21 +05:00
parent b1abf7e5d1
commit c2fdad8c6b
4 changed files with 2 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -13,6 +13,7 @@ series = []
Writing a Reverse Proxy server in Go is a matter of single digit lines of code due to its rock solid standard library and its low level network plumbing capabilities. Recently I came across some use cases where I needed to write my own Reverse Proxy server and of course Go was the pragmatic choice.
![reverse proxy](/posts/img/2021/reverse-proxy-header.png)
Let us first start with defining Reverse Proxy and its common uses.

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -238,6 +238,7 @@ Reverse Proxy A Reverse Proxy is an intermediary server that sits between multip
<div class="content" itemprop="articleBody">
<p>Writing a Reverse Proxy server in Go is a matter of single digit lines of code due to its rock solid standard library and its low level network plumbing capabilities. Recently I came across some use cases where I needed to write my own Reverse Proxy server and of course Go was the pragmatic choice.</p>
<p><img src="/posts/img/2021/reverse-proxy-header.png" alt="reverse proxy"></p>
<p>Let us first start with defining Reverse Proxy and its common uses.</p>
<h2 id="reverse-proxy">Reverse Proxy</h2>
<p>A <code>Reverse Proxy</code> is an intermediary server that sits between multiple clients and servers, and directs client requests to appropriate backend server. It is commonly used for:</p>