forked from TheSkorm/hassio-openvpn
-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.json
39 lines (39 loc) · 917 Bytes
/
config.json
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
{
"name": "OpenVPN Client",
"version": "0.2.9",
"slug": "openvpn-client",
"description": "Connect Hassio to a remote VPN Server",
"startup": "application",
"boot": "auto",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"host_network": true,
"privileged": ["NET_ADMIN"],
"options": {
"config" : [
"client",
"ca ca.crt",
"port 6123",
"cert client.crt",
"key client.key",
"auth SHA256",
"dev tun",
"proto tcp",
"resolv-retry infinite",
"nobind",
"persist-key",
"persist-tun",
"remote-cert-tls server",
"tls-auth ta.key 1",
"cipher AES-256-CBC",
"comp-lzo",
"remote <SERVER ADRESS> <PORT>"
]
},
"schema": {
"config" : ["str"]
},
"ports": {
"8090/tcp" : 8090
},
"map" : ["share:rw"]
}