Proxy
Nouto supports routing requests through a proxy server. You can configure a global proxy that applies to all requests, or override it per-request to route specific requests through a different proxy.
Global Proxy
Section titled “Global Proxy”A global proxy routes all requests by default.
- Open Settings (the gear icon).
- Scroll to the Proxy section.
- Enable Use proxy.
- Set the Protocol (
HTTP,HTTPS, orSOCKS5), Host, and Port. - Optionally enter Username and Password if the proxy requires authentication.
- Optionally add hostnames to the No proxy list to bypass the proxy for those addresses.
Per-Request Proxy
Section titled “Per-Request Proxy”A per-request proxy overrides the global proxy for one specific request.
- Open the request and go to the Settings tab.
- Enable Use proxy for this request.
- Configure protocol, host, port, credentials, and bypass list as needed.
Per-request settings always take priority. If neither is enabled, requests connect directly.
| Condition | Proxy used |
|---|---|
| Per-request proxy enabled | Per-request proxy |
| Only global proxy enabled | Global proxy |
| Neither enabled | Direct connection |
Supported Protocols
Section titled “Supported Protocols”| Protocol | Notes |
|---|---|
| HTTP | Standard HTTP proxy, most common |
| HTTPS | TLS-encrypted proxy tunnel |
| SOCKS5 | Useful for SSH tunnels and advanced routing |
SOCKS4 is not supported. System proxy auto-detection and PAC files are not supported; configure the proxy manually.
No Proxy (Bypass List)
Section titled “No Proxy (Bypass List)”The No proxy field accepts a comma-separated list of hostnames that connect directly, bypassing the proxy:
localhost, 127.0.0.1, *.internal.corp, 10.0.0.0/8Always add localhost and 127.0.0.1 to the bypass list when using a corporate proxy, so local development servers remain reachable.
Common Scenarios
Section titled “Common Scenarios”Corporate Network
Section titled “Corporate Network”Your organization routes all outbound traffic through a corporate proxy:
- Open Settings, enable global proxy.
- Set protocol to
HTTP, host toproxy.company.com, port to3128(or as provided by IT). - Add
localhost, 127.0.0.1to No proxy.
All requests now route through the corporate proxy. Local requests still connect directly.
Debugging with Fiddler, Charles, or mitmproxy
Section titled “Debugging with Fiddler, Charles, or mitmproxy”To inspect a specific request in an HTTP debugging tool:
- Open the request, go to Settings tab, enable the per-request proxy.
- Set protocol to
HTTP, host to127.0.0.1, port to8888(Fiddler default) or8080(Charles/Burp default). - Send the request. It appears in the proxy tool’s traffic log.
Other requests that do not have a per-request proxy configured are unaffected.
Limitations
Section titled “Limitations”- When a proxy is active, HTTP/2 is downgraded to HTTP/1.1.
- Proxy credentials are not encrypted at rest beyond the standard collection storage.
