Skip to content

Instantly share code, notes, and snippets.

@jtbonhomme
Last active August 29, 2015 14:20
Show Gist options
  • Save jtbonhomme/83501e48456df6f476de to your computer and use it in GitHub Desktop.
Save jtbonhomme/83501e48456df6f476de to your computer and use it in GitHub Desktop.
Set chrome proxy

OS X > Settings > Network > Advanced > Proxy

PAC script: file://localhost/Users/jtbonhomme/Desktop/proxy.pac

function FindProxyForURL(url, host)
{
	return "PROXY 127.0.0.1:3000";
}

chrome://net-internals/#proxy -> reapply settings / clear wrong proxies

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment