Major update to the EPP server; basic commands work

This commit is contained in:
Pinga 2023-08-08 17:26:01 +03:00
parent fe44793442
commit e718223d12
3 changed files with 231 additions and 84 deletions

15
epp/config.php Normal file
View file

@ -0,0 +1,15 @@
<?php
return [
'mysql_host' => 'localhost',
'mysql_port' => 3306,
'mysql_database' => 'your_database_name',
'mysql_username' => 'your_username',
'mysql_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',
'ssl_cert' => '',
'ssl_key' => '',
];