From 9dacde2c22f26b5b76888590051b43bd424ad841 Mon Sep 17 00:00:00 2001 From: faultables Date: Sat, 8 Jul 2023 05:01:05 +0700 Subject: [PATCH] docs: fix words --- src/blog/pac-is-actually-useful/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/blog/pac-is-actually-useful/index.md b/src/blog/pac-is-actually-useful/index.md index 2e78f04..626db74 100644 --- a/src/blog/pac-is-actually-useful/index.md +++ b/src/blog/pac-is-actually-useful/index.md @@ -64,7 +64,7 @@ you need to use either one. And no, using transparent proxies doesn't help. -And then I just came across an old technologiy called [Proxy Auto-Configuration](https://developer.mozilla.org/en-US/docs/Web/HTTP/Proxy_servers_and_tunneling/Proxy_Auto-Configuration_PAC_file) +And then I just came across an old technology called [Proxy Auto-Configuration](https://developer.mozilla.org/en-US/docs/Web/HTTP/Proxy_servers_and_tunneling/Proxy_Auto-Configuration_PAC_file) which is the title of this post. The concept is actually simple: a PAC is just a JavaScript file that calls a `FindProxyForURL` function that returns a single string. The minimal script is something like this: @@ -95,7 +95,7 @@ Now, here is the strategy: Actually I can use `mac-mini` instead of `127.0.0.1` as the hostname so I can use the PAC file everywhere using the same URL. -In every VM I use [`gost`](https://github.com/ginuerzh/gost) as SOCKS5 server. I can create a simple systemd service for it `gost` like this: +In every VM I use [`gost`](https://github.com/ginuerzh/gost) as SOCKS5 server. I can create a simple systemd service for `gost` like this: ```js systemd.services.gost = { @@ -185,4 +185,4 @@ use a secure transport (such as Wireguard protocols) to load the PAC file. The Proxy Auto-Configuration was [introduced](https://developer.mozilla.org/en-US/docs/web/http/proxy_servers_and_tunneling/proxy_auto-configuration_pac_file#history_and_implementation) into Netscape Navigator 2.0 in the late 1990s at the same time when JavaScript was introduced. For years I have wondered why my machine has "Automatic proxy configuration" options and why I would ever need it. -And now I know. \ No newline at end of file +And now I know.