mirror of
https://github.com/getnamingo/registry.git
synced 2025-08-03 08:11:49 +02:00
Big escrow generator update
This commit is contained in:
parent
821f4bfc84
commit
2ebeed2500
3 changed files with 228 additions and 229 deletions
|
@ -1,9 +1,25 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'mysql_host' => 'localhost',
|
||||
'mysql_port' => 3306,
|
||||
'mysql_database' => 'your_database_name',
|
||||
'mysql_username' => 'your_username',
|
||||
'mysql_password' => 'your_password',
|
||||
// Database Configuration
|
||||
'db_type' => 'mysql',
|
||||
'db_host' => 'localhost',
|
||||
'db_port' => 3306,
|
||||
'db_database' => 'your_database_name',
|
||||
'db_username' => 'your_username',
|
||||
'db_password' => 'your_password',
|
||||
|
||||
// Escrow Configuration
|
||||
'escrow_deposit_path' => '/opt/escrow',
|
||||
'escrow_deleteXML' => false,
|
||||
'escrow_RDEupload' => false,
|
||||
'escrow_keyPath' => '/opt/escrow/escrowKey.asc',
|
||||
'escrow_privateKey' => '/opt/escrow/privatekey.asc',
|
||||
'escrow_sftp_host' => 'your.sftp.server.com',
|
||||
'escrow_sftp_username' => 'your_username',
|
||||
'escrow_sftp_password' => 'your_password',
|
||||
'escrow_sftp_remotepath' => '/path/on/sftp/server/',
|
||||
'escrow_report_url' => 'https://ry-api.icann.org/report/',
|
||||
'escrow_report_username' => 'your_username',
|
||||
'escrow_report_password' => 'your_password',
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue