1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wireguard_ynh.git synced 2024-09-03 20:35:58 +02:00
wireguard_ynh/manifest.json

73 lines
2.3 KiB
JSON
Raw Normal View History

2020-10-11 14:45:13 +02:00
{
"name": "WireGuard",
"id": "wireguard",
"packaging_format": 1,
"description": {
"en": "Virtual Private Networks (VPN) via WireGuard, with a web UI",
"fr": "Réseaux Privés Virtuels (VPN) via WireGuard, avec une web UI"
},
2021-01-08 20:47:46 +01:00
"version": "0.2.7~ynh2",
2020-10-11 14:45:13 +02:00
"url": "https://github.com/ngoduykhanh/wireguard-ui",
"license": "MIT",
"maintainer": {
"name": "tituspijean",
"email": "tituspijean@outlook.com"
},
"requirements": {
"yunohost": ">= 4.0.8"
2020-10-11 14:45:13 +02:00
},
"multi_instance": false,
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for WireGuard UI",
"fr": "Choisissez un nom de domaine pour WireGuard UI"
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for WireGuard UI",
"fr": "Choisissez un chemin pour WireGuard UI"
},
"example": "/example",
"default": "/",
"help": {
"en": "For the time being, leave the root of a domain. The web UI will not work otherwise.",
"fr": "Pour l'instant, gardez la racine d'un domaine. La web UI ne fonctionnera pas sinon."
}
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez ladministrateur"
},
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"help": {
2020-12-29 20:58:54 +01:00
"en": "It is strongly advised to keep the configuration UI private.",
"fr": "Il est fortement conseillé de garder l'interface de configuration privée."
},
"default": false
2020-10-11 14:45:13 +02:00
}
]
}
}