nginx alternative - Load balancing and TLS termination
nginx alternatifi - Yuk dengeleme ve TLS sonlandirma
HTTP istemci/sunucu
hyper = { version = "1", features = ["full"] }TLS uygulamasi
rustls = "0.23"Async runtime
tokio = { version = "1", features = ["full"] }Copy this Cargo.toml to get started:
[package]
name = "my-reverse-proxy"
version = "0.1.0"
edition = "2021"
[dependencies]
hyper = { version = "1", features = ["full"] }
rustls = "0.23"
tokio = { version = "1", features = ["full"] }
thiserror = "1"
tracing = "0.1"