Skip to content

Commit

Permalink
doc: Changed all instances of SSL to TLS.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpds committed May 19, 2023
1 parent 1c138c7 commit de7660d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Sōzu is a reverse proxy for load balancing, written in Rust. Its main job is to balance inbound requests across two or more clusters backends to spread the load.

* It serves as a termination point for SSL sessions. So the workload of dealing with the encryption is offloaded from the backend.
* It serves as a termination point for TLS sessions. So the workload of dealing with the encryption is offloaded from the backend.

* It can protect the backends by preventing direct access from the network.

Expand Down
6 changes: 3 additions & 3 deletions doc/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ For a given cluster, Sōzu keeps a list of backends to which the connection is r
Sōzu detects broken servers and redirects traffic only to healthy ones, with several available loadbalancing algorithms:
round robin (default), random, least_loaded, and power of two.

## SSL
## TLS

Sōzu is an SSL endpoint, powered by rustls.
It decrypts the traffic using the SSL key and certificate, and forwards it, unencrypted, to the backends.
Sōzu is an TLS endpoint, powered by rustls.
It decrypts the traffic using the TLS key and certificate, and forwards it, unencrypted, to the backends.

## Deep dive

Expand Down

0 comments on commit de7660d

Please sign in to comment.