Skip to content

Commit 741fa50

Browse files
authored
add quotes to proxy export command for correct cut and paste (#48)
1 parent 85da491 commit 741fa50

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/guides/internet-access.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ Login nodes have public IP addresses which means that they can directly access t
99
Compute nodes are configured with the following environment variables to use the proxy server:
1010

1111
```bash
12-
export https_proxy=http://proxy.cscs.ch:8080
13-
export http_proxy=http://proxy.cscs.ch:8080
14-
export no_proxy=.local, .cscs.ch, localhost, 148.187.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16
15-
export HTTPS_PROXY=http://proxy.cscs.ch:8080
16-
export HTTP_PROXY=http://proxy.cscs.ch:8080
17-
export NO_PROXY=.local, .cscs.ch, localhost, 148.187.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16
12+
export https_proxy='http://proxy.cscs.ch:8080'
13+
export http_proxy='http://proxy.cscs.ch:8080'
14+
export no_proxy='.local, .cscs.ch, localhost, 148.187.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16'
15+
export HTTPS_PROXY='http://proxy.cscs.ch:8080'
16+
export HTTP_PROXY='http://proxy.cscs.ch:8080'
17+
export NO_PROXY='.local, .cscs.ch, localhost, 148.187.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16'
1818
```
1919

2020
!!! warning "Public IPs are a shared resource"

0 commit comments

Comments
 (0)