|
2 | 2 | * 公共代理节点 |
3 | 3 | */ |
4 | 4 | export const PUBLIC_PROXY_LIST: string[] = [ |
5 | | - 'https://00.worker-proxy.asia', |
6 | | - 'https://01.worker-proxy.asia', |
7 | | - 'https://02.worker-proxy.asia', |
8 | | - 'https://03.worker-proxy.asia', |
9 | | - 'https://04.worker-proxy.asia', |
10 | | - 'https://05.worker-proxy.asia', |
11 | | - 'https://06.worker-proxy.asia', |
12 | | - 'https://07.worker-proxy.asia', |
13 | | - 'https://08.worker-proxy.asia', |
14 | | - 'https://09.worker-proxy.asia', |
15 | | - 'https://10.worker-proxy.asia', |
16 | | - 'https://11.worker-proxy.asia', |
17 | | - 'https://12.worker-proxy.asia', |
18 | | - 'https://13.worker-proxy.asia', |
19 | | - 'https://14.worker-proxy.asia', |
20 | | - 'https://15.worker-proxy.asia', |
21 | | - |
22 | | - 'https://00.net-proxy.asia', |
23 | | - 'https://01.net-proxy.asia', |
24 | | - 'https://02.net-proxy.asia', |
25 | | - 'https://03.net-proxy.asia', |
26 | | - 'https://04.net-proxy.asia', |
27 | | - 'https://05.net-proxy.asia', |
28 | | - 'https://06.net-proxy.asia', |
29 | | - 'https://07.net-proxy.asia', |
30 | | - 'https://08.net-proxy.asia', |
31 | | - 'https://09.net-proxy.asia', |
32 | | - 'https://10.net-proxy.asia', |
33 | | - 'https://11.net-proxy.asia', |
34 | | - 'https://12.net-proxy.asia', |
35 | | - 'https://13.net-proxy.asia', |
36 | | - 'https://14.net-proxy.asia', |
37 | | - 'https://15.net-proxy.asia', |
38 | | - |
39 | | - 'https://00.workers-proxy.top', |
40 | | - 'https://01.workers-proxy.top', |
41 | | - 'https://02.workers-proxy.top', |
42 | | - 'https://03.workers-proxy.top', |
43 | | - 'https://04.workers-proxy.top', |
44 | | - 'https://05.workers-proxy.top', |
45 | | - 'https://06.workers-proxy.top', |
46 | | - 'https://07.workers-proxy.top', |
47 | | - 'https://08.workers-proxy.top', |
48 | | - 'https://09.workers-proxy.top', |
49 | | - 'https://10.workers-proxy.top', |
50 | | - 'https://11.workers-proxy.top', |
51 | | - 'https://12.workers-proxy.top', |
52 | | - 'https://13.workers-proxy.top', |
53 | | - 'https://14.workers-proxy.top', |
54 | | - 'https://15.workers-proxy.top', |
| 5 | + ...getDomainProxyList('worker-proxy.asia'), |
| 6 | + ...getDomainProxyList('net-proxy.asia'), |
| 7 | + ...getDomainProxyList('workers-proxy.top'), |
| 8 | + ...getDomainProxyList('workers-proxy.shop'), |
| 9 | + ...getDomainProxyList('workers-proxy-1.shop'), |
| 10 | + ...getDomainProxyList('workers-proxy-2.shop'), |
55 | 11 | ]; |
| 12 | + |
| 13 | +// 生成从00.到15.的16个二级域名 |
| 14 | +function getDomainProxyList(domain: string): string[] { |
| 15 | + const list: string[] = []; |
| 16 | + for (let i = 0; i < 16; i++) { |
| 17 | + list.push(`https://${('0' + i).slice(-2)}.${domain}`); |
| 18 | + } |
| 19 | + return list; |
| 20 | +} |
0 commit comments