mirror of
https://github.com/ByteByteGoHq/system-design-101.git
synced 2026-04-12 12:57:24 -04:00
typo: update reasons for reverse proxy (#22)
fix typo in section about reverse proxy --------- Co-authored-by: Sahn Lam <slam@users.noreply.github.com>
This commit is contained in:
12
README.md
12
README.md
@@ -399,18 +399,18 @@ A forward proxy is a server that sits between user devices and the internet.
|
|||||||
|
|
||||||
A forward proxy is commonly used for:
|
A forward proxy is commonly used for:
|
||||||
|
|
||||||
1. Protect clients
|
1. Protecting clients
|
||||||
2. Avoid browsing restrictions
|
2. Circumventing browsing restrictions
|
||||||
3. Block access to certain content
|
3. Blocking access to certain content
|
||||||
|
|
||||||
A reverse proxy is a server that accepts a request from the client, forwards the request to web servers, and returns the results to the client as if the proxy server had processed the request.
|
A reverse proxy is a server that accepts a request from the client, forwards the request to web servers, and returns the results to the client as if the proxy server had processed the request.
|
||||||
|
|
||||||
A reverse proxy is good for:
|
A reverse proxy is good for:
|
||||||
|
|
||||||
1. Protect servers
|
1. Protecting servers
|
||||||
2. Load balancing
|
2. Load balancing
|
||||||
3. Cache static contents
|
3. Caching static contents
|
||||||
4. Encrypt and decrypt SSL communications
|
4. Encrypting and decrypting SSL communications
|
||||||
|
|
||||||
### What are the common load-balancing algorithms?
|
### What are the common load-balancing algorithms?
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user