Skip to content

Instantly share code, notes, and snippets.

@Drarig29
Last active July 13, 2023 12:40
Show Gist options
  • Save Drarig29/d6dcf7f2995921e063006afb01b776db to your computer and use it in GitHub Desktop.
Save Drarig29/d6dcf7f2995921e063006afb01b776db to your computer and use it in GitHub Desktop.
An example PAC file which only returns "DIRECT"
function FindProxyForURL(url, host) {
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment