blob: 807824a4caa2890fa77f3fc9bd2c4ece01b26abc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import Config
config :esshd,
enabled: true,
priv_dir: Path.join(Path.dirname(__DIR__), "priv/keys"),
handler: {Chessh.Shell, :on_shell, 4},
port: 42069,
public_key_authenticator: Chessh.Auth.KeyAuthenticator,
password_authenticator: Chessh.Auth.PasswordAuthenticator
import_config "#{config_env()}.exs"
|