diff --git a/storage/pkg/flagset/frontend.go b/storage/pkg/flagset/frontend.go index 1431dd9b20..93212bc9bf 100644 --- a/storage/pkg/flagset/frontend.go +++ b/storage/pkg/flagset/frontend.go @@ -230,14 +230,14 @@ func FrontendWithConfig(cfg *config.Config) []cli.Flag { &cli.StringFlag{ Name: "appprovider-apps-url", Value: flags.OverrideDefaultString(cfg.Reva.AppProvider.AppsURL, "/app/list"), - Usage: "URL where the archiver is reachable", + Usage: "URL where the app listing of the app provider is reachable", EnvVars: []string{"STORAGE_FRONTEND_APP_PROVIDER_APPS_URL"}, Destination: &cfg.Reva.AppProvider.AppsURL, }, &cli.StringFlag{ Name: "appprovider-open-url", Value: flags.OverrideDefaultString(cfg.Reva.AppProvider.OpenURL, "/app/open"), - Usage: "URL where the archiver is reachable", + Usage: "URL where files can be handed over to an application from the app provider", EnvVars: []string{"STORAGE_FRONTEND_APP_PROVIDER_OPEN_URL"}, Destination: &cfg.Reva.AppProvider.OpenURL, },