因為工作需求,測試環境沒有 sftp,目前先找簡易的 sftp 建置,有找到一個好用的 SFTPGo 工具,這邊簡單紀錄。
Releases · drakkan/sftpgo
浮雲雅築: [研究] 免費 Free SFTP、FTPS Server
設定檔
sftpgo.json 裡面很長,但簡單紀錄幾個比較重要設定,如Port
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
},
"httpd": {
"bindings": [
{
"port": 8080,
"address": "",
"enable_web_admin": true,
"enable_web_client": true,
"enable_https": false,
"client_auth_type": 0,
"tls_cipher_suites": [],
"proxy_allowed": [],
"hide_login_url": 0,
"render_openapi": true,
"web_client_integrations": []
}
],
...
"sftpd": {
"bindings": [
{
"port": 2022,
"address": "",
"apply_proxy_config": true
}
],
"max_auth_tries": 0,
"banner": "",
"host_keys": [],
|
仔細看官方文件,感覺滿多設定可以玩。