reverse_proxy 0.1.0

TLS wrapper based on warp-reverse-proxy
reverse_proxy-0.1.0 is not a library.

Reverse Proxy with TLS

Simply wraps an existing HTTP service to make it HTTPS. By default, assumes your service is on port 8080 and serves it at port 4343.

$ cargo install reverse_proxy

  <set up TLS cert directory>

$ reverse_proxy

Generating certificates

Example setup from Rustls

How to bind the real SSL port

$ sudo setcap CAP_NET_BIND_SERVICE=+eip <binary>
$ PORT=443 <binary>