mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-31 10:07:24 +01:00
18 lines
436 B
Markdown
18 lines
436 B
Markdown
alpaca
|
|
======
|
|
|
|
[Alpaca][1] is a local HTTP proxy for command-line tools. It supports proxy auto-configuration (PAC) files and NTLM authentication.
|
|
|
|
Sample proxy.pac
|
|
|
|
```javascript
|
|
function FindProxyForURL(url, host) {
|
|
return "DIRECT";
|
|
}
|
|
```
|
|
|
|
Read [this][2] to create your own.
|
|
|
|
[1]: https://github.com/samuong/alpaca
|
|
[2]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Proxy_servers_and_tunneling/Proxy_Auto-Configuration_PAC_file
|