Add shadowtls (#49)

* Add shadowtls outbound

* Add shadowtls inbound

* Add shadowtls example

* Add shadowtls documentation
This commit is contained in:
世界
2022-08-31 14:21:53 +08:00
committed by GitHub
parent 917c4f0e91
commit 73746383cc
19 changed files with 586 additions and 15 deletions

View File

@@ -36,6 +36,7 @@ const (
ImageBoringTun = "ghcr.io/ntkme/boringtun:edge"
ImageHysteria = "tobyxdd/hysteria:latest"
ImageNginx = "nginx:stable"
ImageShadowTLS = "ghcr.io/ihciah/shadow-tls:latest"
)
var allImages = []string{
@@ -46,7 +47,8 @@ var allImages = []string{
ImageNaive,
ImageBoringTun,
ImageHysteria,
// ImageNginx,
ImageNginx,
ImageShadowTLS,
}
var localIP = netip.MustParseAddr("127.0.0.1")