Merge pull request #7814 from owncloud/apphandler-insecure

apply ocis init insecure option also to FRONTEND_APP_HANDLER_INSECURE
This commit is contained in:
kobergj
2023-12-12 18:50:26 +01:00
committed by GitHub

View File

@@ -78,6 +78,7 @@ type SettingsService struct {
}
type FrontendService struct {
AppHandler InsecureService `yaml:"app_handler"`
Archiver InsecureService
ServiceAccount ServiceAccount `yaml:"service_account"`
}
@@ -408,6 +409,7 @@ func CreateConfig(insecure, forceOverwrite bool, configPath, adminPassword strin
cfg.AuthBearer = AuthbearerService{
AuthProviders: AuthProviderSettings{Oidc: _insecureService},
}
cfg.Frontend.AppHandler = _insecureService
cfg.Frontend.Archiver = _insecureService
cfg.Graph.Spaces = _insecureService
cfg.Graph.Events = _insecureEvents