mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-07 21:00:30 -06:00
Add example
This commit is contained in:
@@ -3,7 +3,9 @@ Enhancement: Functionality to map home directory to different storage providers
|
||||
We added a parameter in reva that allows us to redirect /home requests to
|
||||
different storage providers based on a mapping derived from the user attributes,
|
||||
which was previously not possible since we hardcode the /home path for all
|
||||
users. This PR adds the config for that parameter.
|
||||
users. For example, having its value as `/home/{{substr 0 1 .Username}}` can be
|
||||
used to redirect home requests for different users to different storage
|
||||
providers.
|
||||
|
||||
https://github.com/owncloud/ocis/pull/1186
|
||||
https://github.com/cs3org/reva/pull/1142
|
||||
|
||||
@@ -100,7 +100,7 @@ func GatewayWithConfig(cfg *config.Config) []cli.Flag {
|
||||
&cli.StringFlag{
|
||||
Name: "storage-home-mapping",
|
||||
Value: "",
|
||||
Usage: "mapping template for user home paths to user-specific mount points",
|
||||
Usage: "mapping template for user home paths to user-specific mount points, e.g. /home/{{substr 0 1 .Username}}",
|
||||
EnvVars: []string{"STORAGE_GATEWAY_HOME_MAPPING"},
|
||||
Destination: &cfg.Reva.Gateway.HomeMapping,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user