Skip to content

Commit

Permalink
chore(config): disable FTP and SFTP by default
Browse files Browse the repository at this point in the history
  • Loading branch information
xhofe committed Dec 12, 2024
1 parent 33ba7f1 commit cf58ab3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/conf/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func DefaultConfig() *Config {
SSL: false,
},
FTP: FTP{
Enable: true,
Enable: false,
Listen: ":5221",
FindPasvPortAttempts: 50,
ActiveTransferPortNon20: false,
Expand All @@ -192,7 +192,7 @@ func DefaultConfig() *Config {
EnablePasvConnIPCheck: true,
},
SFTP: SFTP{
Enable: true,
Enable: false,
Listen: ":5222",
},
}
Expand Down

0 comments on commit cf58ab3

Please sign in to comment.