Compare commits

..

5 Commits

Author SHA1 Message Date
loyalsoldier
230f0af7da Add more details and refine comments 2020-07-08 17:09:17 +08:00
loyalsoldier
cf29ec96ae Add generated list to README 2020-07-08 17:09:17 +08:00
loyalsoldier
effe5b8365 Rename GREATFIRE_DOMAINS_MINE_URL to GREATFIRE_DOMAINS_URL 2020-07-08 16:35:31 +08:00
loyalsoldier
bdccfdc75b Remove outdated @wongsyrone/domain-block-list 2020-07-08 16:34:11 +08:00
Loyalsoldier
b4c5cce510 Change domainStrategy to AsIs
to skip DNS resolving process due to
```
{
    "type": "field",
    "outboundTag": "Proxy",
    "network": "tcp,udp"
}
```
as fallback routing rule
2020-07-07 10:41:50 +08:00
2 changed files with 12 additions and 20 deletions

View File

@@ -24,7 +24,7 @@ jobs:
echo "::set-env name=RELEASE_NAME::Released on $(date +%Y%m%d%H%M)"
echo "::set-env name=TAG_NAME::$(date +%Y%m%d%H%M)"
echo "::set-env name=GEOIP_REPO::github.com/Loyalsoldier/geoip"
echo "::set-env name=GEOSITE_REPO::github.com/v2fly/domain-list-community"
echo "::set-env name=GEOSITE_REPO::github.com/v2ray/domain-list-community"
echo "::set-env name=CHINA_DOMAINS_URL::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/accelerated-domains.china.conf"
echo "::set-env name=GOOGLE_DOMAINS_URL::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/google.china.conf"
echo "::set-env name=APPLE_DOMAINS_URL::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/apple.china.conf"

View File

@@ -15,7 +15,7 @@
### geosite.dat
- 通过仓库 [@v2fly/domain-list-community](https://github.com/v2fly/domain-list-community) 生成
- 通过仓库 [@v2ray/domain-list-community](https://github.com/v2ray/domain-list-community) 生成
- **加入大量中国大陆域名、Apple 域名和 Google 域名**
- [@felixonmars/dnsmasq-china-list/accelerated-domains.china.conf](https://github.com/felixonmars/dnsmasq-china-list/blob/master/accelerated-domains.china.conf) 加入到 `geosite:cn` 类别中
- [@felixonmars/dnsmasq-china-list/apple.china.conf](https://github.com/felixonmars/dnsmasq-china-list/blob/master/apple.china.conf) 加入到 `geosite:geolocation-!cn` 类别中(如希望本文件中的 Apple 域名直连,请参考下面 [geosite 的 Routing 配置方式](https://github.com/Loyalsoldier/v2ray-rules-dat#geositedat-1)
@@ -114,7 +114,6 @@ scoop install v2ray-rules-dat
"domain": [
"geosite:apple-cn",
"geosite:google-cn",
"geosite:tld-cn",
"domain:icloud.com",
"domain:icloud-content.com"
]
@@ -142,13 +141,6 @@ scoop install v2ray-rules-dat
```json
"dns": {
"servers": [
{
"address": "114.114.114.114",
"port": 53,
"domains": [
"geosite:cn"
]
},
{
"address": "1.1.1.1",
"port": 53,
@@ -156,8 +148,15 @@ scoop install v2ray-rules-dat
"geosite:geolocation-!cn"
]
},
"223.5.5.5",
"8.8.8.8"
{
"address": "114.114.114.114",
"port": 53,
"domains": [
"geosite:cn"
]
},
"8.8.8.8",
"223.5.5.5"
]
}
```
@@ -285,13 +284,6 @@ scoop install v2ray-rules-dat
"geosite:category-ads-all"
]
},
{
"type": "field",
"outboundTag": "Direct",
"domain": [
"geosite:tld-cn"
]
},
{
"type": "field",
"outboundTag": "Proxy",
@@ -351,7 +343,7 @@ scoop install v2ray-rules-dat
- [MaxMind GeoLite2 Free IP Database](https://dev.maxmind.com/geoip/geoip2/geolite2/)
- [@v2ray/geoip](https://github.com/v2ray/geoip)
- [@Loyalsoldier/geoip](https://github.com/Loyalsoldier/geoip)
- [@v2fly/domain-list-community](https://github.com/v2fly/domain-list-community)
- [@v2ray/domain-list-community](https://github.com/v2ray/domain-list-community)
- [@felixonmars/dnsmasq-china-list](https://github.com/felixonmars/dnsmasq-china-list)
- [@gfwlist/gfwlist](https://github.com/gfwlist/gfwlist)
- [@pexcn/gfwlist-extras](https://github.com/pexcn/gfwlist-extras)