Change default reva frontend url to point to ocis-proxy

This commit is contained in:
Benedikt Kulmann
2020-06-24 22:18:03 +02:00
parent 97c190e0aa
commit 775942387c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ func FrontendWithConfig(cfg *config.Config) []cli.Flag {
},
&cli.StringFlag{
Name: "url",
Value: "localhost:9140",
Value: "https://localhost:9200",
Usage: "URL to use for the reva service",
EnvVars: []string{"REVA_FRONTEND_URL"},
Destination: &cfg.Reva.Frontend.URL,
+1 -1
View File
@@ -188,7 +188,7 @@ func GatewayWithConfig(cfg *config.Config) []cli.Flag {
&cli.StringFlag{
Name: "frontend-url",
Value: "localhost:9140",
Value: "https://localhost:9200",
Usage: "URL to use for the reva service",
EnvVars: []string{"REVA_FRONTEND_URL"},
Destination: &cfg.Reva.Frontend.URL,