credentials.sample.php 509 B

12345678910111213
  1. <?php
  2. /**
  3. * Admin credentials. Copy to credentials.php, then set your own password:
  4. * generate a hash with: php -r "echo password_hash('your-password', PASSWORD_DEFAULT), PHP_EOL;"
  5. *
  6. * The default below is username "admin", password "changeme".
  7. * The application rewrites this file when the password is changed online,
  8. * so it must remain writable by the web server.
  9. */
  10. return [
  11. 'username' => 'admin',
  12. 'password_hash' => '$2y$12$oLK/BpvD7Opj0.VlxbkMiu1QrqD5wQi.e5HCKIyOjdroMwF503Gi.',
  13. ];