This commit is contained in:
A.Unger
2021-11-11 13:06:03 +01:00
parent 9b8c3838e8
commit cfc9738e51
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -61,7 +61,7 @@ type Thumbnail struct {
Resolutions []string `mapstructure:"resolutions"`
FileSystemStorage FileSystemStorage `mapstructure:"filesystem_storage"`
WebdavAllowInsecure bool `mapstructure:"webdav_allow_insecure"`
CS3AllowInsecure bool `mapstructure:"cs3_allow_insecure"`
CS3AllowInsecure bool `mapstructure:"cs3_allow_insecure"`
RevaGateway string `mapstructure:"reva_gateway"`
WebdavNamespace string `mapstructure:"webdav_namespace"`
}
@@ -100,7 +100,7 @@ func DefaultConfig() *Config {
WebdavAllowInsecure: true,
RevaGateway: "127.0.0.1:9142",
WebdavNamespace: "/home",
CS3AllowInsecure: false,
CS3AllowInsecure: false,
},
}
}