├── .drone.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml └── opt ├── init.py ├── init.sh ├── supervisord.conf └── xray ├── d2ray.json.in ├── rules_blockads.json └── rules_blockcn.json /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /opt/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/opt/init.py -------------------------------------------------------------------------------- /opt/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/opt/init.sh -------------------------------------------------------------------------------- /opt/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/opt/supervisord.conf -------------------------------------------------------------------------------- /opt/xray/d2ray.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/opt/xray/d2ray.json.in -------------------------------------------------------------------------------- /opt/xray/rules_blockads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/opt/xray/rules_blockads.json -------------------------------------------------------------------------------- /opt/xray/rules_blockcn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quackerd/d2ray/HEAD/opt/xray/rules_blockcn.json --------------------------------------------------------------------------------