From af68c425cb8190252fc9e42f07072eaabf26466f Mon Sep 17 00:00:00 2001 From: Anton Afanasyeu Date: Thu, 11 Jun 2026 23:34:36 +0300 Subject: [PATCH] url shortener config --- backend/url-shortener/config/config.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 backend/url-shortener/config/config.php diff --git a/backend/url-shortener/config/config.php b/backend/url-shortener/config/config.php new file mode 100644 index 0000000..0645030 --- /dev/null +++ b/backend/url-shortener/config/config.php @@ -0,0 +1,20 @@ + [ + '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', +];