-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathhttp-proxy.html.md.erb
94 lines (56 loc) · 3.19 KB
/
http-proxy.html.md.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
title: Using the cf CLI with a proxy server
owner: CLI
---
If you have an HTTP or SOCKS5 proxy server on your network between a host running the Cloud Foundry Command Line Interface (cf CLI) and your API endpoint, you must
set the `https_proxy` variable with the hostname or IP address of the proxy server. The `https_proxy` environment variable holds the hostname or IP address of the
proxy server.
The `https_proxy` variable is a standard environment variable. As with any environment variable, the specific steps used to set it depends on your operating
system.
## <a id="format"></a> Format of https_proxy
The `https_proxy` variable is set with hostname or IP address of the proxy server in URL format, as shown in the following example:
```
https_proxy=http://proxy.example.com
```
If the proxy server requires a username and password, you must include the credentials, as shown in the following example:
```
https_proxy=http://username:[email protected]
```
If the proxy server uses a port other than 80, you must include the port number, as shown in the following example:
```
https_proxy=http://username:[email protected]:8080
```
If the proxy server is a SOCKS5 proxy, you must specify the SOCKS5 protocol in the URL, as shown in the following example:
```
https_proxy=socks5://socks_proxy.example.com
```
The <code>cf ssh</code> command for cf CLI v7 does not work through a SOCKS5 proxy.
## <a id="mac-linux"></a> Set https_proxy in macOS or Linux
To set the `https_proxy` environment variable in macOS or Linux:
1. Use the command specific to your shell. For example, in bash, use the `export` command, as shown in the following example:
```
export https_proxy=http://my.proxyserver.com:8080
```
1. To make this change persistent, add the command to the appropriate profile file for the shell. For example, in bash, add a
line similar to the following example to your `.bash_profile` or `.bashrc` file:
```
https_proxy=http://username:password@hostname:port
export $https_proxy
```
## <a id="windows"></a> Set https_proxy in Windows
To set the `https_proxy` environment variable in Windows:
1. Open the **Start** menu.
1. Right-click **Computer** and select **Properties**.

1. In the left pane of the **System** window, click **Advanced system settings**.

2. In the **System Properties** window:
1. Select **Advanced**.
2. Click **Environment Variables**.

3. Under **User variables**, click **New**.

4. For **Variable name**, enter `https_proxy`.
5. For **Variable value**, enter your proxy server information.

6. Click **OK**.