Minecraft-SSHD/src/main/resources/config.yml

19 lines
761 B
YAML
Raw Normal View History

2014-08-18 05:41:53 +00:00
# The IP addresses(s) the SSH server will listen on. Use a comma separated list for multiple addresses.
2014-09-05 06:01:47 +00:00
# Leave as "all" for all addresses.
listenAddress: all
2014-08-03 20:20:00 +00:00
# The port the SSH server will listen on.
2013-11-14 07:17:51 +00:00
port: 22
# Operational mode. Don't touch if you don't know what you're doing. Can be either DEFAULT or RPC
mode: DEFAULT
2013-11-14 07:17:51 +00:00
# By default, only public key authentication is enabled. This is the most secure mode.
# To authorize a user to log in with public key authentication, install their public
# PEM certificate in the authorized_users directory. Name the key file with user's user
# name (no file extension).
# For less secure username and password based authentication, complete the sections below.
credentials:
# user1: password1
2014-08-03 20:20:00 +00:00
# user2: password2