add missing insecure environment variables

This commit is contained in:
David Christofas
2022-04-26 10:26:31 +02:00
parent 40320fbb36
commit 5919d256f5
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -79,7 +79,7 @@ type Archiver struct {
MaxNumFiles int64 `yaml:"max_num_files"`
MaxSize int64 `yaml:"max_size"`
Prefix string
Insecure bool
Insecure bool `env:"OCIS_INSECURE;FRONTEND_ARCHIVER_INSECURE"`
}
type AppProvider struct {
@@ -90,7 +90,7 @@ type AppProvider struct {
OpenURL string `yaml:"open_url"`
NewURL string `yaml:"new_url"`
Prefix string
Insecure bool
Insecure bool `env:"OCIS_INSECURE;FRONTEND_APPPROVIDER_INSECURE"`
}
type DataGateway struct {