1
0
mirror of git://f0xx.org/ac/ac-ms-template synced 2026-07-29 05:18:34 +03:00
Files
ac-ms-template/skeleton/config/config.example.php
Anton Afanasyeu 1ca30210bd initial
2026-06-23 12:29:30 +02:00

21 lines
614 B
PHP

<?php
/**
* URL shortener — BE config (copy to config.php on Alpine).
* DB user: reuse crash reporter app user (same password as androidcast_crashes in crashes config.php).
*/
return [
'db' => [
'driver' => 'mysql',
'mysql' => [
'host' => '127.0.0.1',
'port' => 3306,
'socket' => '/run/mysqld/mysqld.sock',
'database' => 'url_shortener',
'username' => 'androidcast',
'password' => 'change-me-same-as-crashes-config',
'charset' => 'utf8mb4',
],
],
'public_base' => 'https://s.f0xx.org',
];