SSL/TLS proxy with mutual authentication for secure communications
Simple SSL/TLS proxy with mutual authentication
ghostunnel$ ghostunnel server --listen localhost:8443 --target localhost:8080 --cert server.crt --key server.key --cacert ca.crt$ ghostunnel client --listen localhost:8080 --target remote.example.com:8443 --cert client.crt --key client.key --cacert ca.crt$ ghostunnel server --listen 0.0.0.0:9443 --target backend:8080 --cert server.crt --key server.key --cacert ca.crt --verify required