mirror of
https://github.com/snail007/goproxy
synced 2024-11-16 00:12:55 +00:00
19 lines
533 B
Plaintext
19 lines
533 B
Plaintext
# domain support wildcard and comment line stared with #
|
|
# **.google.com match all domain subfix with .google.com
|
|
# *.youtube.com only math level 3 sub domain of .youtube.com
|
|
|
|
#example
|
|
|
|
**.google.com proxy
|
|
*.youtube.com
|
|
*.baidu.com 114.114.114.114,system,direct
|
|
b.com
|
|
c.com
|
|
d.com 8.8.8.8:53
|
|
e.com
|
|
|
|
#explain
|
|
|
|
#using `proxy >>> -q` to resolve **.google.com and *.youtube.com
|
|
#using 114.114.114.114:53 and system and `direct >>> -q` to resolve *.baidu.com and b.com and c.com
|
|
#using 8.8.8.8:53 to resolve **.google.com and *.youtube.com |