diff options
author | Robin Krahl <me@robin-krahl.de> | 2019-01-21 22:48:09 +0100 |
---|---|---|
committer | Robin Krahl <me@robin-krahl.de> | 2019-01-21 23:02:41 +0100 |
commit | 06e0f212a9f944e11851cdad57aa5efd02594370 (patch) | |
tree | 0504a946a70ed0734201f7f1094dbc6d6bbdf6eb /common/files/sshd_config | |
download | ansible-roles-06e0f212a9f944e11851cdad57aa5efd02594370.tar.gz ansible-roles-06e0f212a9f944e11851cdad57aa5efd02594370.tar.bz2 |
Add common role for basic system setup
Diffstat (limited to 'common/files/sshd_config')
-rw-r--r-- | common/files/sshd_config | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/common/files/sshd_config b/common/files/sshd_config new file mode 100644 index 0000000..878b81f --- /dev/null +++ b/common/files/sshd_config @@ -0,0 +1,12 @@ +# Authentication types +ChallengeResponseAuthentication no +PasswordAuthentication no +PubkeyAuthentication yes + +# Authentication details +AuthorizedKeysFile .ssh/authorized_keys +PermitRootLogin no +UsePAM yes + +# Subsystems +Subsystem sftp /usr/lib/ssh/sftp-server |