Last active
July 13, 2023 12:40
-
-
Save Drarig29/d6dcf7f2995921e063006afb01b776db to your computer and use it in GitHub Desktop.
An example PAC file which only returns "DIRECT"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function FindProxyForURL(url, host) { | |
return "DIRECT"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment