mirror of
https://github.com/getnamingo/registry.git
synced 2025-06-26 14:14:41 +02:00
EPP configuration fix
This commit is contained in:
parent
274760f2c5
commit
b6ce7b8e08
1 changed files with 8 additions and 7 deletions
|
@ -1,15 +1,16 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'mysql_host' => 'localhost',
|
'db_type' => 'mysql',
|
||||||
'mysql_port' => 3306,
|
'db_host' => 'localhost',
|
||||||
'mysql_database' => 'your_database_name',
|
'db_port' => 3306,
|
||||||
'mysql_username' => 'your_username',
|
'db_database' => 'your_database_name',
|
||||||
'mysql_password' => 'your_password',
|
'db_username' => 'your_username',
|
||||||
|
'db_password' => 'your_password',
|
||||||
'epp_host' => '0.0.0.0',
|
'epp_host' => '0.0.0.0',
|
||||||
'epp_port' => 700,
|
'epp_port' => 700,
|
||||||
'epp_pid' => '/var/run/epp.pid',
|
'epp_pid' => '/var/run/epp.pid',
|
||||||
'epp_greeting' => 'Namingo EPP Server 1.0',
|
'epp_greeting' => 'Namingo EPP Server 1.0',
|
||||||
'ssl_cert' => '',
|
'ssl_cert' => '',
|
||||||
'ssl_key' => '',
|
'ssl_key' => '',
|
||||||
];
|
];
|
Loading…
Add table
Add a link
Reference in a new issue