forked from YunoHost-Apps/vpnserver_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
69 lines (69 loc) · 2.02 KB
/
manifest.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
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
{
"name": "OpenVPN",
"id": "openvpn",
"packaging_format": 1,
"version": "2.3.4-3",
"description": {
"en": "Your Secure and Private Tunnel to the Internet",
"fr": "Votre tunnel privé et sécurisé vers Internet"
},
"requirements": {
"yunohost": ">= 2.4"
},
"license": "GPL-2.0",
"url": "http://openvpn.net",
"maintainer": {
"name": "sebian",
"email": "[email protected]",
"url": "https://github.com/YunoHost-Apps/openvpn_ynh"
},
"multi_instance": false,
"services": [
"nginx",
"php5-fpm",
"slapd",
"openvpn"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for OpenVPN",
"fr": "Choisissez un domaine pour OpenVPN"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for OpenVPN",
"fr": "Choisissez un chemin pour OpenVPN"
},
"example": "/openvpn",
"default": "/openvpn"
},
{
"name": "ip4ranges",
"type": "string",
"ask": {
"en": "List IPv4 range to attribute to VPN clients (seperated by space)",
"fr": "Listez les plages d'adresses IPv4 à attribuer aux clients VPN (séparé par des espaces)"
},
"example": "10.128.0.0/24",
"default": "10.128.0.0/24"
},
{
"name": "dynamic_ip",
"type": "boolean",
"ask": {
"en": "Would you IPv4 be attributed dynamically ?",
"fr": "Est ce que vous voulez que les IPv4 soient attribuées dynamiquement ?"
},
"default": false
}
]
}
}