diff --git a/content/posts/img/2021/reverse-proxy-header.png b/content/posts/img/2021/reverse-proxy-header.png
new file mode 100644
index 0000000..858811e
Binary files /dev/null and b/content/posts/img/2021/reverse-proxy-header.png differ
diff --git a/content/posts/writing-your-own-reverse-proxy-using-golang.md b/content/posts/writing-your-own-reverse-proxy-using-golang.md
index 1648b74..f0802cb 100644
--- a/content/posts/writing-your-own-reverse-proxy-using-golang.md
+++ b/content/posts/writing-your-own-reverse-proxy-using-golang.md
@@ -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.
+
Let us first start with defining Reverse Proxy and its common uses.
diff --git a/public/posts/img/2021/reverse-proxy-header.png b/public/posts/img/2021/reverse-proxy-header.png
new file mode 100644
index 0000000..858811e
Binary files /dev/null and b/public/posts/img/2021/reverse-proxy-header.png differ
diff --git a/public/posts/writing-your-own-reverse-proxy-using-golang/index.html b/public/posts/writing-your-own-reverse-proxy-using-golang/index.html
index 858767e..ef7b974 100644
--- a/public/posts/writing-your-own-reverse-proxy-using-golang/index.html
+++ b/public/posts/writing-your-own-reverse-proxy-using-golang/index.html
@@ -238,6 +238,7 @@ Reverse Proxy A Reverse Proxy is an intermediary server that sits between multip
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.
Reverse Proxy
A Reverse Proxy is an intermediary server that sits between multiple clients and servers, and directs client requests to appropriate backend server. It is commonly used for: