Update doc for setting PasswordAuthentication to 'no'

This commit is contained in:
Julien Jershon 2022-01-21 13:21:18 +01:00
parent 68bd516850
commit f5f39c9a6c
2 changed files with 4 additions and 19 deletions

View file

@ -50,17 +50,10 @@ ssh-copy-id -i ~/.ssh/id_rsa.pub <nom_utilisateur@votre.domaine.tld>
Entrez le mot de passe dadministration et votre clé publique devrait être copiée sur votre serveur.
**Sur votre serveur**, éditez le fichier de configuration SSH, pour désactiver lauthentification par mot de passe.
```bash
nano /etc/ssh/sshd_config
**Sur votre serveur**, l'édition du fichier de configuration SSH pour désactiver lauthentification par mot de passe est gérée par un paramètre système :
# Modifiez ou ajoutez la ligne suivante
PasswordAuthentication no
```
Sauvegardez et relancez le démon SSH.
```bash
systemctl restart ssh
sudo yunohost settings set security.ssh.password_authentication -v no
```
---

View file

@ -46,18 +46,10 @@ ssh-copy-id -i ~/.ssh/id_rsa.pub <username@your_yunohost_server>
Type your admnistration password and your key will be copied on your server.
**On your server**, edit the SSH configuration file, in order to deactivate the password authentication.
**On your server**, the edition of the SSH configuration file in order to deactivate the password authentication is handled by a system setting:
```bash
nano /etc/ssh/sshd_config
# Modify or add the following line
PasswordAuthentication no
```
Save and restart the SSH daemon.
```bash
systemctl restart ssh
sudo yunohost settings set security.ssh.password_authentication -v no
```
---