How do I make curl ignore the proxy? Setting $NO_PROXY doesn\'t seem to work for me.
Add your proxy preferences into .curlrc
proxy = 1.2.3.4 noproxy = .dev,localhost,127.0.0.1
This make all dev domains and local machine request ignore the proxy.