123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- # There is a built-in micro proxy that will host the webui and REST API all on
- # one port (this is called the "Single HTTP Frontend") and means you just need
- # one open port in the container/firewalls/etc.
- #
- # Listen on all addresses available, port 1337
- listenAddressSingleHTTPFrontend: 0.0.0.0:1337
- # Choose from INFO (default), WARN and DEBUG
- logLevel: "INFO"
- # Checking for updates https://docs.olivetin.app/reference/updateChecks.html
- checkForUpdates: false
- # Docs: https://docs.olivetin.app/action_execution/create_your_first.html
- actions:
- - title: Restart VPN
- shell: nordvpn c
- icon: <iconify-icon icon="gala:secure"></iconify-icon>
- popupOnStart: execution-dialog-stdout-only
- - title: Run SnapRAID Sync
- shell: snapraid sync
- maxConcurrent: 1
- timeout: 6000
- icon: backup
- popupOnStart: execution-dialog
- - title: Restart Application
- icon: restart
- shell: systemctl restart {{ container }}
- arguments:
- - name: container
- title: Application name
- choices:
- - value: sickgear
- - value: transmission
- - value: qbittorrent
- - title: Reboot Server
- icon: ashtonished
- shell: systemctl reboot
- popupOnStart: default
- arguments:
- - type: confirmation
- title: Are you sure?!
|