config.default.php 951 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
  5. *
  6. * You should have received a copy of the
  7. * COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
  8. * along with this program. If not, see http://www.sun.com/cddl/cddl.html
  9. *
  10. * 2019 - 2020 https://://www.bananas-playground.net/projekt/selfpaste
  11. */
  12. /**
  13. * this is the config file for the webclient
  14. */
  15. /* please provide a unique username for this installation */
  16. define('FRONTEND_USERNAME','some');
  17. /* please provide a unique password for this installation */
  18. define('FRONTEND_PASSWORD', 'admin');
  19. /* please provide a unique secret for this installation and add this to the allowed ones*/
  20. define('THE_SECRET','your super duper secret');
  21. /* the selfpaste installation endpoint url. Absolute or relative */
  22. define('THE_ENDPOINT','http://www.some.tld/path/to/selfpaste/index.php');