mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 21:24:20 +01:00
* ssh: Add support for a web-based terminal via Ingress * ssh: Upgrade Alpine Linux to 3.11 * ssh: Improve Hass.io API token handling * ssh: Bump to 8.0, updated changelog * ssh: Fix Shellcheck warning * ssh: Use default Ingress port * ssh: Persist .ssh folder * ssh: Add some helper symlinks to use folder * ssh: Make sure web terminal starts in home folder * ssh: Update changelog to reflect latest changes
24 lines
363 B
Plaintext
24 lines
363 B
Plaintext
# This is the sshd server system-wide configuration file. See
|
|
# sshd_config(5) for more information.
|
|
|
|
# Logging
|
|
LogLevel INFO
|
|
|
|
# Default
|
|
AllowTcpForwarding no
|
|
GatewayPorts no
|
|
X11Forwarding no
|
|
|
|
Subsystem sftp /usr/lib/ssh/sftp-server
|
|
|
|
# Authentication:
|
|
PermitRootLogin yes
|
|
|
|
Banner none
|
|
PrintMotd no
|
|
|
|
#PasswordAuthentication no
|
|
#PermitEmptyPasswords no
|
|
|
|
|