mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-05 02:23:27 +02:00
Documentation update
This commit is contained in:
parent
256cb6491a
commit
e68b0a72fc
2 changed files with 32 additions and 1 deletions
|
@ -18,6 +18,7 @@ return [
|
||||||
'escrow_keyPath' => '/opt/escrow/escrowKey.asc',
|
'escrow_keyPath' => '/opt/escrow/escrowKey.asc',
|
||||||
'escrow_keyPath_brda' => '/opt/escrow/icann-brda-gpg.pub',
|
'escrow_keyPath_brda' => '/opt/escrow/icann-brda-gpg.pub',
|
||||||
'escrow_privateKey' => '/opt/escrow/privatekey.asc',
|
'escrow_privateKey' => '/opt/escrow/privatekey.asc',
|
||||||
|
'escrow_signing_fingerprint' => 'REPLACE_WITH_YOUR_40_CHAR_KEY_FINGERPRINT',
|
||||||
'escrow_sftp_host' => 'your.sftp.server.com',
|
'escrow_sftp_host' => 'your.sftp.server.com',
|
||||||
'escrow_sftp_username' => 'your_username',
|
'escrow_sftp_username' => 'your_username',
|
||||||
'escrow_sftp_password' => 'your_password',
|
'escrow_sftp_password' => 'your_password',
|
||||||
|
|
32
docs/gtld.md
32
docs/gtld.md
|
@ -70,7 +70,37 @@ Always keep your private key secure. Do not share it. If someone gains access to
|
||||||
|
|
||||||
### 2.4. Use in RDE deposit generation
|
### 2.4. Use in RDE deposit generation
|
||||||
|
|
||||||
Please send the exported `publickey.asc` to your RDE provider, and also place the path to `privatekey.asc` in the escrow.php system as required.
|
After generating your key pair and exporting the files:
|
||||||
|
|
||||||
|
#### 2.4.1. Send the Public Key
|
||||||
|
|
||||||
|
Send the exported `publickey.asc` file to your RDE provider (e.g., DENIC).
|
||||||
|
|
||||||
|
> 🔐 **Do not send the private key. Keep `privatekey.asc` secure and stored only on your server.**
|
||||||
|
|
||||||
|
#### 2.4.2. Get the Fingerprint
|
||||||
|
|
||||||
|
Run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
gpg2 --with-colons --list-keys your.email@example.com | grep '^fpr' | head -n 1 | cut -d: -f10
|
||||||
|
```
|
||||||
|
|
||||||
|
Or visually:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
gpg2 --list-keys --fingerprint your.email@example.com
|
||||||
|
```
|
||||||
|
|
||||||
|
Use the 40-character fingerprint (e.g., `C5D2BC6174369B11C7CB1ADB80D7E3572F8BA377`).
|
||||||
|
|
||||||
|
#### 2.4.3. Configure in `conf.php`
|
||||||
|
|
||||||
|
Set the value in `/opt/registry/automation/conf.php`:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
'escrow_signing_fingerprint' => 'C5D2BC6174369B11C7CB1ADB80D7E3572F8BA377',
|
||||||
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue