13 lines
270 B
Markdown
13 lines
270 B
Markdown
# SFTP Server
|
|
|
|
Per default SFTP is enabled in the `sshd` configuration. You may disable it with:
|
|
|
|
```
|
|
ssh_server::sftp::enable: false
|
|
```
|
|
or change it with e.g.:
|
|
```
|
|
ssh_server::sftp::server: '/usr/libexec/openssh/sftp-server -l INFO'
|
|
```
|
|
which configures more logging.
|