From b6ce7b8e08b72110b7734cd42737d004bed83b64 Mon Sep 17 00:00:00 2001 From: Pinga <121483313+getpinga@users.noreply.github.com> Date: Tue, 15 Aug 2023 13:21:09 +0300 Subject: [PATCH] EPP configuration fix --- epp/config.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/epp/config.php b/epp/config.php index cfd7a2b..14726b0 100644 --- a/epp/config.php +++ b/epp/config.php @@ -1,15 +1,16 @@ 'localhost', - 'mysql_port' => 3306, - 'mysql_database' => 'your_database_name', - 'mysql_username' => 'your_username', - 'mysql_password' => 'your_password', + 'db_type' => 'mysql', + 'db_host' => 'localhost', + 'db_port' => 3306, + 'db_database' => 'your_database_name', + 'db_username' => 'your_username', + 'db_password' => 'your_password', 'epp_host' => '0.0.0.0', 'epp_port' => 700, - 'epp_pid' => '/var/run/epp.pid', - 'epp_greeting' => 'Namingo EPP Server 1.0', + 'epp_pid' => '/var/run/epp.pid', + 'epp_greeting' => 'Namingo EPP Server 1.0', 'ssl_cert' => '', 'ssl_key' => '', ]; \ No newline at end of file