config.yaml 474 B

1234567891011121314151617181920212223242526
  1. #
  2. # Integration Test Config: Local User Authentication
  3. #
  4. listenAddressSingleHTTPFrontend: 0.0.0.0:1337
  5. logLevel: "DEBUG"
  6. checkForUpdates: false
  7. # Enable local user authentication
  8. authLocalUsers:
  9. enabled: true
  10. users:
  11. - username: "testuser"
  12. usergroup: "admin"
  13. password: "testpass123"
  14. # Simple actions for testing
  15. actions:
  16. - title: Ping Google.com
  17. shell: ping google.com -c 1
  18. icon: ping
  19. - title: sleep 2 seconds
  20. shell: sleep 2
  21. icon: "&#x1F971"