rp header
parent
b1abf7e5d1
commit
c2fdad8c6b
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
|
|
@ -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.
|
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.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
Let us first start with defining Reverse Proxy and its common uses.
|
Let us first start with defining Reverse Proxy and its common uses.
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
|
|
@ -238,6 +238,7 @@ Reverse Proxy A Reverse Proxy is an intermediary server that sits between multip
|
||||||
|
|
||||||
<div class="content" itemprop="articleBody">
|
<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>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>
|
<p>Let us first start with defining Reverse Proxy and its common uses.</p>
|
||||||
<h2 id="reverse-proxy">Reverse Proxy</h2>
|
<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>
|
<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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue