manifest.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "VPN Client",
  3. "id": "vpnclient",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "Tunnel the internet traffic through a VPN",
  7. "fr": "Fait passer le trafic internet à travers un VPN"
  8. },
  9. "version": "1.4.1~ynh3",
  10. "url": "https://labriqueinter.net",
  11. "license": "AGPL-3.0",
  12. "maintainer": {
  13. "name": "pitchum",
  14. "email": "pitchum@users.noreply.github.com"
  15. },
  16. "multi_instance": false,
  17. "requirements": {
  18. "yunohost": ">= 3.8.0"
  19. },
  20. "services": [
  21. "nginx",
  22. "php7.0-fpm"
  23. ],
  24. "arguments": {
  25. "install": [
  26. {
  27. "name": "domain",
  28. "type": "domain",
  29. "ask": {
  30. "en": "Choose a domain for the web administration",
  31. "fr": "Choisissez un domaine pour l'administration web"
  32. },
  33. "example": "domain.org"
  34. },
  35. {
  36. "name": "path",
  37. "type": "path",
  38. "ask": {
  39. "en": "Choose a path for the web administration",
  40. "fr": "Choisissez un chemin pour l'administration web"
  41. },
  42. "example": "/vpnadmin",
  43. "default": "/vpnadmin"
  44. }
  45. ]
  46. }
  47. }