add default values for SSH settings (#500)

This commit is contained in:
Lunny Xiao 2016-12-29 04:51:15 -06:00 committed by Thomas Boerger
parent 799d0c2030
commit ac51caa517
1 changed files with 30 additions and 24 deletions

View File

@ -79,7 +79,7 @@ var (
LandingPageURL LandingPage
UnixSocketPermission uint32
SSH struct {
SSH = struct {
Disabled bool `ini:"DISABLE_SSH"`
StartBuiltinServer bool `ini:"START_SSH_SERVER"`
Domain string `ini:"SSH_DOMAIN"`
@ -91,6 +91,12 @@ var (
KeygenPath string `ini:"SSH_KEYGEN_PATH"`
MinimumKeySizeCheck bool `ini:"-"`
MinimumKeySizes map[string]int `ini:"-"`
}{
Disabled: false,
StartBuiltinServer: false,
Domain: "localhost",
Port: 22,
KeygenPath: "ssh-keygen",
}
LFS struct {