1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_sshd.git synced 2024-08-16 11:59:49 +02:00

Merge pull request #1 from maxbachmann-ansible/master

allow different ssh port than 22
This commit is contained in:
L3D 2019-04-14 15:18:21 +02:00 committed by GitHub
commit bc10e502d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -1,4 +1,7 @@
---
# set the ssh port
ssh_port: 22
# default users for SSH access
sshd_default_allowed_users:
- "root"

View file

@ -3,7 +3,7 @@
# Networking
Port 22
Port {{ ssh_port }}
TCPKeepAlive yes