config.yaml_chloe-test 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # There is a built-in micro proxy that will host the webui and REST API all on
  2. # one port (this is called the "Single HTTP Frontend") and means you just need
  3. # one open port in the container/firewalls/etc.
  4. #
  5. # Listen on all addresses available, port 1337
  6. listenAddressSingleHTTPFrontend: 0.0.0.0:1337
  7. # Choose from INFO (default), WARN and DEBUG
  8. logLevel: "INFO"
  9. # Checking for updates https://docs.olivetin.app/reference/updateChecks.html
  10. checkForUpdates: false
  11. # Docs: https://docs.olivetin.app/action_execution/create_your_first.html
  12. actions:
  13. - title: Restart VPN
  14. shell: nordvpn c
  15. icon: <iconify-icon icon="gala:secure"></iconify-icon>
  16. popupOnStart: execution-dialog-stdout-only
  17. - title: Run SnapRAID Sync
  18. shell: snapraid sync
  19. maxConcurrent: 1
  20. timeout: 6000
  21. icon: backup
  22. popupOnStart: execution-dialog
  23. - title: Restart Application
  24. icon: restart
  25. shell: systemctl restart {{ container }}
  26. arguments:
  27. - name: container
  28. title: Application name
  29. choices:
  30. - value: sickgear
  31. - value: transmission
  32. - value: qbittorrent
  33. - title: Reboot Server
  34. icon: ashtonished
  35. shell: systemctl reboot
  36. popupOnStart: default
  37. arguments:
  38. - type: confirmation
  39. title: Are you sure?!