├── .gitignore ├── Dockerfile-xray-master ├── Dockerfile-xray-node ├── README.md ├── configs-master ├── base.json ├── inbounds.json ├── outbounds.json └── routing.json ├── configs-node ├── base.json ├── inbounds.json ├── outbounds.json └── routing.json ├── docker-compose.yml ├── faces.go ├── go.mod ├── main.go └── rebootXray.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /Dockerfile-xray-master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/Dockerfile-xray-master -------------------------------------------------------------------------------- /Dockerfile-xray-node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/Dockerfile-xray-node -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/README.md -------------------------------------------------------------------------------- /configs-master/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/configs-master/base.json -------------------------------------------------------------------------------- /configs-master/inbounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/configs-master/inbounds.json -------------------------------------------------------------------------------- /configs-master/outbounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/configs-master/outbounds.json -------------------------------------------------------------------------------- /configs-master/routing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/configs-master/routing.json -------------------------------------------------------------------------------- /configs-node/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/configs-node/base.json -------------------------------------------------------------------------------- /configs-node/inbounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/configs-node/inbounds.json -------------------------------------------------------------------------------- /configs-node/outbounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/configs-node/outbounds.json -------------------------------------------------------------------------------- /configs-node/routing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/configs-node/routing.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /faces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/faces.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/MrMohebi/xray-iran-bridge 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/main.go -------------------------------------------------------------------------------- /rebootXray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrMohebi/xray-iran-bridge-configs/HEAD/rebootXray.sh --------------------------------------------------------------------------------