servnest-mkosi/mkosi.skeleton/etc/sftpgo/sftpgo.toml

42 lines
733 B
TOML
Raw Normal View History

2022-05-09 02:40:29 +02:00
[sftpd]
banner = "SFTPGo"
host_keys = [
"/etc/sftpgo/ed25519"
]
host_key_algorithms = [
"ssh-ed25519"
]
kex_algorithms = [
"curve25519-sha256",
"curve25519-sha256@libssh.org"
]
ciphers = [
"chacha20-poly1305@openssh.com",
"aes128-gcm@openssh.com",
"aes256-gcm@openssh.com"
]
macs = [
"hmac-sha2-256-etm@openssh.com",
"hmac-sha2-512-etm@openssh.com"
]
login_banner_file = "/etc/sftpgo/banner.txt"
enabled_ssh_commands = []
[[sftpd.bindings]]
port = 2022
address = "[::1]"
[[sftpd.bindings]]
port = 2022
address = "127.0.0.1"
[data_provider]
driver = "memory"
2023-01-29 21:14:36 +01:00
users_base_dir = "/srv/servnest/ht"
external_auth_hook = "http://[::1]:8055/sftpgo-auth.php"
2022-06-09 03:28:39 +02:00
external_auth_scope = 1
2022-06-23 19:50:50 +02:00
naming_rules = 1
2022-05-09 02:40:29 +02:00
[[httpd.bindings]]
port = 0