From 3fc2e4596075749ee40a913ea5be7352d68e413c Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Wed, 1 May 2024 03:19:30 -0700 Subject: [PATCH] Update proxy.md --- docs/guides/http/proxy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/http/proxy.md b/docs/guides/http/proxy.md index 5b8ffb386e..e8aafaf2ea 100644 --- a/docs/guides/http/proxy.md +++ b/docs/guides/http/proxy.md @@ -17,8 +17,8 @@ The `proxy` option is a URL string that specifies the proxy server. It can inclu --- -You can also set the `$PROXY_URL` environment variable to the proxy URL. This is useful when you want to use the same proxy for all requests. +You can also set the `$HTTP_PROXY` or `$HTTPS_PROXY` environment variable to the proxy URL. This is useful when you want to use the same proxy for all requests. ```sh -PROXY_URL=https://username:password@proxy.example.com:8080 bun run index.ts +HTTPS_PROXY=https://username:password@proxy.example.com:8080 bun run index.ts ```