Skip to content

Instantly share code, notes, and snippets.

@thewhodidthis
Last active December 24, 2024 18:20
Show Gist options
  • Select an option

  • Save thewhodidthis/4f5bf2f37f4870b9235642b48827c893 to your computer and use it in GitHub Desktop.

Select an option

Save thewhodidthis/4f5bf2f37f4870b9235642b48827c893 to your computer and use it in GitHub Desktop.
Helps locally route .pi4 requests
// https://gist.githubusercontent.com/thewhodidthis/4f5bf2f37f4870b9235642b48827c893/raw/proxy.pac
function FindProxyForURL(url, host) {
if (shExpMatch(host, "*.pi4")) {
return "PROXY 192.168.1.227"
}
return "DIRECT"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment