├── .github └── workflows │ ├── Docker-Build.yaml │ └── Update.yml ├── .gitignore ├── README.md ├── default ├── extra.conf ├── gfw_group.conf └── update.sh ├── docker ├── docker-compose-cn.yaml ├── docker-compose.yaml ├── overture │ ├── Dockerfile │ ├── china_ip.list │ ├── config.yaml │ └── overture_gfw_domain.list ├── smartdns │ ├── Dockerfile │ └── smartdns.conf └── upstream.yaml └── smartdns_gfw_domain.conf /.github/workflows/Docker-Build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/.github/workflows/Docker-Build.yaml -------------------------------------------------------------------------------- /.github/workflows/Update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/.github/workflows/Update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/README.md -------------------------------------------------------------------------------- /default/extra.conf: -------------------------------------------------------------------------------- 1 | lala.im 2 | -------------------------------------------------------------------------------- /default/gfw_group.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/default/gfw_group.conf -------------------------------------------------------------------------------- /default/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/default/update.sh -------------------------------------------------------------------------------- /docker/docker-compose-cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/docker/docker-compose-cn.yaml -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /docker/overture/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/docker/overture/Dockerfile -------------------------------------------------------------------------------- /docker/overture/china_ip.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/docker/overture/china_ip.list -------------------------------------------------------------------------------- /docker/overture/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/docker/overture/config.yaml -------------------------------------------------------------------------------- /docker/overture/overture_gfw_domain.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/docker/overture/overture_gfw_domain.list -------------------------------------------------------------------------------- /docker/smartdns/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/docker/smartdns/Dockerfile -------------------------------------------------------------------------------- /docker/smartdns/smartdns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/docker/smartdns/smartdns.conf -------------------------------------------------------------------------------- /docker/upstream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/docker/upstream.yaml -------------------------------------------------------------------------------- /smartdns_gfw_domain.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apocalypsor/SmartDNS-GFWList/HEAD/smartdns_gfw_domain.conf --------------------------------------------------------------------------------