From b8c6426005e9eecbedea93b375a1471e3be4cb54 Mon Sep 17 00:00:00 2001 From: anton Date: Mon, 12 Aug 2024 12:34:46 +0000 Subject: [PATCH] new --- proxy.pac | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 proxy.pac diff --git a/proxy.pac b/proxy.pac new file mode 100644 index 0000000..cd422c3 --- /dev/null +++ b/proxy.pac @@ -0,0 +1,13 @@ +function FindProxyForURL(url, host) + +{ + + if (shExpMatch(host, "*linkedin.com")) + + return "SOCKS5 proxy.vm:11080"; + + else + + return "DIRECT"; + +} \ No newline at end of file