-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.json
More file actions
39 lines (39 loc) · 1.24 KB
/
settings.json
File metadata and controls
39 lines (39 loc) · 1.24 KB
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
{
"CallOnNetworkchange":false,
"NetworkChangeAdapters":"<NetworkAdapterName(s) seperate with comma>",
"SetProxyOnStartUp":true,
"UniquePrefixLine":"### Created by LinuxProxyChanger",
"UniqueSuffixLine":"### End of LinuxProxyChanger",
"BashPath":"/bin/bash",
"BashCommandEnable":"source /etc/environment",
"BashCommandDisable":"proxy_http=\nproxys_http=\nproxy_ftp=",
"ProxyIp":"10.1.0.0",
"Timeout":5,
"Files":[
{
"Path":"/etc/environment",
"Proxy":[
"http_proxy=http://<ProxyIP>:<ProxyPort>/",
"http_proxy=https://<ProxyIP>:<ProxyPort>/",
"ftp_proxy=http://<ProxyIP>:<ProxyPort>/",
"no_proxy=<ProxyExceptions>"
]
},
{
"Path":"/etc/systemd/system/docker.service.d/http-proxy.conf",
"Proxy":[
"[Service]",
"Environment=\"HTTP_PROXY=http://<ProxyIP>:<ProxyPort>\"",
"Environment=\"HTTPS_PROXY=http://<ProxyIP>:<ProxyPort>\"",
"Environment=\"ProxyExceptions>\""
]
},
{
"Path":"/etc/apt/apt.conf.d/proxy.conf",
"Proxy":[
"Acquire::http::Proxy \"http://<ProxyIP>:<ProxyPort>/\";",
"Acquire::https::Proxy \"http://<ProxyIP>:<ProxyPort>/\";"
]
}
]
}