mirror of
https://github.com/tobychui/zoraxy.git
synced 2025-06-09 00:57:20 +02:00

+ Added X-Forwarded-Proto for automatic proxy detector + Split blacklist and whitelist from geodb script file + Optimized compile binary size + Added access control to TCP proxy + Added "invalid config detect" in up time monitor for isse #7 + Fixed minor bugs in advance stats panel + Reduced file size of embedded materials
19 lines
296 B
Go
19 lines
296 B
Go
//go:build linux && amd64
|
|
// +build linux,amd64
|
|
|
|
package sshprox
|
|
|
|
import "embed"
|
|
|
|
/*
|
|
Bianry embedding for AMD64 builds
|
|
|
|
Make sure when compile, gotty binary exists in static.gotty
|
|
*/
|
|
var (
|
|
//go:embed gotty/gotty_linux_amd64
|
|
//go:embed gotty/.gotty
|
|
//go:embed gotty/LICENSE
|
|
gotty embed.FS
|
|
)
|