Skip to content

Commit b7e53f6

Browse files
committed
Updated README.md
1 parent 3962df2 commit b7e53f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ A simple HTTP reverse proxy written in Go.
66

77
This single-host reverse proxy listens on `localhost:8080` and forwards requests to `localhost:8081`. Responses are stored in an in-memory cache if they include an "Expires" header. The cached responses are indexed by the request URL path.
88

9-
An example origin server is included in `cmd/origin`. It allows you to control the response's `Expires` header based on the request's URL-encoded query string (see [README.md](cmd/origin/README.md)).
9+
An example "echo" server is included in `cmd/origin`. It allows you to control the response's `Expires` header based on the request's URL-encoded query string (see [README.md](cmd/origin/README.md)).
1010

1111
## Disclaimer
1212

13-
This is part of a coding challenge to write an HTTP reverse proxy with a caching feature. The only restriction is to not use `net/http/httputil`.
13+
This code was written for a coding challenge: write an HTTP reverse proxy with a caching feature, without using `net/http/httputil`. Also, this is my very first project written in Go (you have been warned!).
1414

1515
For a full-featured open-source reverse proxy and load balancer you should check [Traefik Proxy](https://traefik.io/traefik/) ;)

0 commit comments

Comments
 (0)