remove proxy asset path configuration

This commit is contained in:
Willy Kloucek
2021-10-05 14:10:41 +02:00
parent 2932b7b821
commit 1b9ec56af4
3 changed files with 6 additions and 13 deletions
-7
View File
@@ -140,13 +140,6 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag {
EnvVars: []string{"PROXY_HTTP_ROOT"},
Destination: &cfg.HTTP.Root,
},
&cli.StringFlag{
Name: "asset-path",
Value: flags.OverrideDefaultString(cfg.Asset.Path, ""),
Usage: "Path to custom assets",
EnvVars: []string{"PROXY_ASSET_PATH"},
Destination: &cfg.Asset.Path,
},
&cli.StringFlag{
Name: "service-namespace",
Value: flags.OverrideDefaultString(cfg.Service.Namespace, "com.owncloud.web"),