++ Local port
This commit is contained in:
@@ -27,11 +27,13 @@ Variabili principali:
|
||||
- `NEXTERM_TZ`: timezone del container
|
||||
- `NEXTERM_ENCRYPTION_KEY`: chiave di cifratura obbligatoria per Nexterm
|
||||
|
||||
> `NEXTERM_ENCRYPTION_KEY` deve essere una stringa lunga e casuale.
|
||||
> `NEXTERM_ENCRYPTION_KEY` deve essere una stringa esadecimale di **64 caratteri**.
|
||||
> Esempio rapido (PowerShell):
|
||||
|
||||
```powershell
|
||||
[Convert]::ToBase64String((1..48 | ForEach-Object { Get-Random -Maximum 256 }))
|
||||
$bytes = New-Object byte[] 32
|
||||
[System.Security.Cryptography.RandomNumberGenerator]::Create().GetBytes($bytes)
|
||||
($bytes | ForEach-Object { $_.ToString('x2') }) -join ''
|
||||
```
|
||||
|
||||
## Avvio
|
||||
|
||||
Reference in New Issue
Block a user