-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathconfig.json.example
More file actions
29 lines (29 loc) · 816 Bytes
/
config.json.example
File metadata and controls
29 lines (29 loc) · 816 Bytes
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
{
"endpoint":{
"listen":"0.0.0.0:443",
"cert_file":"./keys/server.crt",
"key_file":"./keys/server.key"
},
"network_cidr":"10.8.0.0/16",
"dns":"8.8.8.8",
"client_routes":["1.0.0.0/8", "2.0.0.0/7", "4.0.0.0/6", "8.0.0.0/5", "16.0.0.0/4", "32.0.0.0/3", "64.0.0.0/2", "128.0.0.0/1"],
"server_routes":[],
"bind_ips":[],
"up_traffic_limit":52428800,
"down_traffic_limit":104857600,
"auth":{
"file":{
"path":"users.credentials"
},
"http":{
"url":"http://127.0.0.1/auth",
"timeout":5
},
"ldap":{
"host":"ldap://localhost",
"admin_dn":"cn=admin,dc=polevpn,dc=com",
"admin_pwd":"xxxxx",
"user_dn":"ou=Users,dc=polevpn,dc=com"
}
}
}