Skip to content

Commit 9725a39

Browse files
author
Jay Winstead
authored
Merge pull request #44 from launchdarkly/jw/ch5779
update readme to include proxy auth info
2 parents bc913f7 + 27788e6 commit 9725a39

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Note that this gem will automatically switch to using the Rails logger it is det
8080

8181
HTTPS proxy
8282
------------
83-
The Ruby SDK uses Faraday to handle all of its network traffic. Faraday provides a built-in HTTPS proxy. If the HTTPS_PROXY environment variable is present then the SDK will proxy all network requests through the URL provided.
83+
The Ruby SDK uses Faraday to handle all of its network traffic. Faraday provides built-in support for the use of an HTTPS proxy. If the HTTPS_PROXY environment variable is present then the SDK will proxy all network requests through the URL provided.
8484

8585
How to set the HTTPS_PROXY environment variable on Mac/Linux systems:
8686
```
@@ -94,6 +94,16 @@ set HTTPS_PROXY=https://web-proxy.domain.com:8080
9494
```
9595

9696

97+
If your proxy requires authentication then you can prefix the URN with your login information:
98+
```
99+
export HTTPS_PROXY=http://user:[email protected]:8080
100+
```
101+
or
102+
```
103+
set HTTPS_PROXY=http://user:[email protected]:8080
104+
```
105+
106+
97107
Your first feature flag
98108
-----------------------
99109

0 commit comments

Comments
 (0)