mirror of
https://github.com/SukkaW/Surge.git
synced 2026-03-15 15:36:42 +08:00
Some checks failed
Build / Build (push) Has been cancelled
Build / Diff output (push) Has been cancelled
Build / Deploy to Cloudflare Pages (3.114.12) (push) Has been cancelled
Build / Deploy to GitHub and GitLab (push) Has been cancelled
Build / Remove Artifacts after Deployment (push) Has been cancelled
23 lines
601 B
TypeScript
23 lines
601 B
TypeScript
export const PROBE_DOMAINS = ['.microsoft.com', '.windows.net', '.windows.com', '.windowsupdate.com', '.windowssearch.com', '.office.net'];
|
|
|
|
export const RULES = [
|
|
// Microsoft OCSP (HTTP Only)
|
|
String.raw`URL-REGEX,^http://www\.microsoft\.com/pki/`,
|
|
String.raw`URL-REGEX,^http://www\.microsoft\.com/pkiops/`
|
|
];
|
|
|
|
export const DOMAINS = [
|
|
'res.cdn.office.net',
|
|
'res-1.cdn.office.net',
|
|
'res-2.cdn.office.net',
|
|
'res-h3.public.cdn.office.net',
|
|
'statics.teams.cdn.office.net'
|
|
];
|
|
|
|
export const DOMAIN_SUFFIXES = [];
|
|
|
|
export const BLACKLIST = [
|
|
'www.microsoft.com',
|
|
'windowsupdate.com'
|
|
];
|