Skip to content

Instantly share code, notes, and snippets.

@Alan7-Alan
Alan7-Alan / proxy.pac
Last active April 11, 2026 03:28
cyteaqfxd
function FindProxyForURL(url, host) {
// Твои данные: IP 31.59.20.176 и порт 6754
var myProxy = "PROXY 64.137.10.153:5803";
// Прямое соединение для локальных адресов и сервисов Apple (чтобы Айпад не глючил)
if (isPlainHostName(host) ||
dnsDomainIs(host, ".local") ||
shExpMatch(host, "*.apple.com") ||
shExpMatch(host, "*.icloud.com")) {
return "DIRECT";