├── .github └── workflows │ ├── findredundant.yml │ ├── get-ip2location.yml │ └── release.yml ├── LICENSE ├── README.fa.md ├── README.md ├── assets ├── logo-black.png └── logo-white.png ├── config.json ├── domains.txt ├── ip2location-csv-converter.py └── vn.txt /.github/workflows/findredundant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/.github/workflows/findredundant.yml -------------------------------------------------------------------------------- /.github/workflows/get-ip2location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/.github/workflows/get-ip2location.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.fa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/README.fa.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/assets/logo-black.png -------------------------------------------------------------------------------- /assets/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/assets/logo-white.png -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/config.json -------------------------------------------------------------------------------- /domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/domains.txt -------------------------------------------------------------------------------- /ip2location-csv-converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/ip2location-csv-converter.py -------------------------------------------------------------------------------- /vn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuong2023/vn-v2ray-rules/HEAD/vn.txt --------------------------------------------------------------------------------