Disable exposing data server for public links storage by default

This commit is contained in:
Benedikt Kulmann
2020-06-25 11:48:36 +02:00
parent c1f74450b6
commit f8d5eb62fb
+1 -1
View File
@@ -140,7 +140,7 @@ func StoragePublicLink(cfg *config.Config) []cli.Flag {
},
&cli.BoolFlag{
Name: "expose-data-server",
Value: true,
Value: false,
Usage: "exposes a dedicated data server",
EnvVars: []string{"REVA_STORAGE_PUBLIC_LINK_EXPOSE_DATA_SERVER"},
Destination: &cfg.Reva.StoragePublicLink.ExposeDataServer,