| 12345678910111213 |
- <?php
- /**
- * Admin credentials. Copy to credentials.php, then set your own password:
- * generate a hash with: php -r "echo password_hash('your-password', PASSWORD_DEFAULT), PHP_EOL;"
- *
- * The default below is username "admin", password "changeme".
- * The application rewrites this file when the password is changed online,
- * so it must remain writable by the web server.
- */
- return [
- 'username' => 'admin',
- 'password_hash' => '$2y$10$Y6vXsF0ykl0S8PbW3rSPPeK1ZBCwYpuBABv3JCVSt17c40cA8B4C6',
- ];
|