config.yaml_chloe-test-centos10 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. timeout: 10
  16. icon: ssh
  17. popupOnStart: execution-dialog-stdout-only
  18. - title: Run SnapRAID Sync
  19. shell: snapraid sync
  20. maxConcurrent: 1
  21. timeout: 6000
  22. icon: backup
  23. popupOnStart: execution-dialog
  24. - title: Restart App
  25. icon: restart
  26. shell: systemctl restart {{ container }}
  27. timeout: 180
  28. arguments:
  29. - name: container
  30. title: App
  31. choices:
  32. - value: sickgear
  33. - value: transmission
  34. - value: qbittorrent
  35. - value: homepage
  36. - title: Reboot Server
  37. icon: ashtonished
  38. shell: systemctl reboot
  39. popupOnStart: default
  40. arguments:
  41. - type: confirmation
  42. title: Are you sure?!