- ajout des informations du serveur de certificat dans les conf
This commit is contained in:
parent
1cbd7ce0c6
commit
10703493ab
6
TODO.md
6
TODO.md
|
|
@ -1,12 +1,6 @@
|
|||
tail -fn 100 /var/log/gitea/*.log
|
||||
|
||||
Le Certificat Racine (Public) : /var/lib/step-ca/.step/certs/root_ca.crt
|
||||
La Clé Racine (ULTRA SECRET) : /var/lib/step-ca/.step/secrets/root_ca_key
|
||||
Le Mot de Passe : /var/lib/step-ca/.step/password.txt (si tu en as un)
|
||||
La Configuration : /var/lib/step-ca/.step/config/ca.json
|
||||
|
||||
stockage
|
||||
/etc/ssl/wildcard
|
||||
|
||||
BUG SMTP PROXMOX
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ CMD_LIST_CONFIG_JSON=$(cat <<EOF
|
|||
{"label": "Enter a VM without pass", "cmd": "pct enter ID","bin": "pct"},
|
||||
{"label": "Mount from Prox to VM", "cmd": "pct set ID -mp0 /mnt/synology_series,mp=/srv/media/series","bin": "pct"},
|
||||
{"label": "Change VM configuration", "cmd": "nano /etc/pve/lxc/ID.conf","bin": "pct"},
|
||||
{"label": "Restart VM", "cmd": "pct stop ID && pct start ID","bin": "pct"},
|
||||
{"label": "Restart VM", "cmd": "pct stop ID && pct start ID","bin": "pct"}
|
||||
]
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,16 @@ CONF_LIST_CONFIG_JSON=$(cat <<EOF
|
|||
|
||||
]
|
||||
},
|
||||
{
|
||||
{
|
||||
"section": "CERTIFICAT SERVER",
|
||||
"items": [
|
||||
{"label": "Public root cert", "cmd": "/var/lib/step-ca/.step/certs/root_ca.crt", "bin": "step-ca"},
|
||||
{"label": "ULTRA SECRET root cert", "cmd": "/var/lib/step-ca/.step/secrets/root_ca_key", "bin": "step-ca"},
|
||||
{"label": "ULTRA SECRET root cert password", "cmd": "/var/lib/step-ca/.step/password.txt", "bin": "step-ca"},
|
||||
{"label": "Step-ca configuration file", "cmd": "/var/lib/step-ca/.step/config/ca.json", "bin": "step-ca"}
|
||||
]
|
||||
},
|
||||
{
|
||||
"section": "MAIL",
|
||||
"items": [
|
||||
{"label": "msmtp config", "cmd": "/etc/msmtprc", "bin": "msmtp"}
|
||||
|
|
|
|||
Loading…
Reference in New Issue