mirror of
git://f0xx.org/android_cast
synced 2026-07-29 05:58:14 +03:00
url shortener config
This commit is contained in:
20
backend/url-shortener/config/config.php
Normal file
20
backend/url-shortener/config/config.php
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?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.sock',
|
||||||
|
'database' => 'url_shortener',
|
||||||
|
'username' => 'androidcast',
|
||||||
|
'password' => 'androidcastrootowned',
|
||||||
|
'charset' => 'utf8mb4',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'public_base' => 'https://s.f0xx.org',
|
||||||
|
];
|
||||||
Reference in New Issue
Block a user