sftpgo
This directory contains some examples for the SFTPGo file server.
example-standard
This example runs SFTPGo in standard mode (sftpgo serve
command, the default).
Bash | |
---|---|
Then you can access your SFTPGo instance:
- Via web browser: http://127.0.0.1:8080/
- Via SFTP:
sftp -P2022 alice@127.0.0.1
example-portable
This example runs SFTPGo in portable mode (sftpgo portable
command).
Bash | |
---|---|
Then you can access your SFTPGo instance via SFTP only:
Bash | |
---|---|
Note: if you want it to be accessible only via web browser instead, you can set the
--sftpd-port=-1
and--httpd-port=8080
flags.
Useful info
You can find the complete list of all the SFTPGo ACL permissions (with descriptions) in this file: https://github.com/drakkan/sftpgo/blob/fef388d8cbd50db9ab7d38f8bc02a7ebde140407/internal/dataprovider/user.go#L40-L77