You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
675 B

  1. <?php
  2. $GLOBALS['config'] = array(
  3. /**
  4. * List of servers available for all users
  5. */
  6. 'servers' => array(/* 'Local Beanstalkd' => 'beanstalk://localhost:11300', ... */),
  7. /**
  8. * Saved samples jobs are kept in this file, must be writable
  9. */
  10. 'storage' => dirname(__FILE__) . DIRECTORY_SEPARATOR . 'storage.json',
  11. /**
  12. * Optional Basic Authentication
  13. */
  14. 'auth' => array(
  15. 'enabled' => getenv('AUTH') == 'enable' ? true : false,
  16. 'username' => getenv('AUTH_USERNAME') ?: 'admin',
  17. 'password' => getenv('AUTH_PASSWORD') ?: 'password',
  18. ),
  19. /**
  20. * Version number
  21. */
  22. 'version' => '1.7.4',
  23. );