You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,10 +86,14 @@ All you need is:
86
86
87
87
#### Environment variables:
88
88
89
+
Basic authentication is used for proxy access. Configure via environment variables:
90
+
* PROXY_USERNAME
91
+
* PROXY_PASSWORD
92
+
89
93
##### Required
90
94
You have two available methods of proxy authentication: username and password or IP restriction. You can use either one or both simultaneously.
91
95
92
-
-`USERNAME`, `PASSWORD` - set the username and password for the forward proxy. The username and password should consist of alphanumeric characters. Using special characters may cause issues due to how URL encoding works.
96
+
-`PROXY_USERNAME`, `PROXY_PASSWORD` - set the username and password for the forward proxy. The username and password should consist of alphanumeric characters. Using special characters may cause issues due to how URL encoding works.
93
97
-`ONLY_HOST_IP` - set this variable to true if you want to restrict access to the proxy only to the host server (i.e., the IP address of the server running the CloudProxy Docker container).
94
98
95
99
##### Optional
@@ -102,8 +106,8 @@ See individual provider pages for environment variables required in above provid
102
106
For example:
103
107
104
108
```shell
105
-
docker run -e USERNAME='CHANGE_THIS_USERNAME' \
106
-
-e PASSWORD='CHANGE_THIS_PASSWORD' \
109
+
docker run -e PROXY_USERNAME='CHANGE_THIS_USERNAME' \
0 commit comments