├── .gitignore ├── README.md ├── config.json ├── go.mod ├── go.sum ├── install.sh ├── main.go └── nginx.conf /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .idea/ 3 | nohup.out 4 | go.sum -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bepass-org/smartSNI/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bepass-org/smartSNI/HEAD/config.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bepass-org/smartSNI/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bepass-org/smartSNI/HEAD/go.sum -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bepass-org/smartSNI/HEAD/install.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bepass-org/smartSNI/HEAD/main.go -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bepass-org/smartSNI/HEAD/nginx.conf --------------------------------------------------------------------------------