diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-07-21 02:24:34 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-07-21 02:24:34 -0700 |
| commit | 70effac0d3edc95e55aa0c6d70e9d35a259ca2c8 (patch) | |
| tree | 6ba7538bbf6e47e8333edbf7f4b1f779bf7ca826 /weed/filer | |
| parent | 3138805b3319e02522a9394b47635b7dc0f6413a (diff) | |
| download | seaweedfs-70effac0d3edc95e55aa0c6d70e9d35a259ca2c8.tar.xz seaweedfs-70effac0d3edc95e55aa0c6d70e9d35a259ca2c8.zip | |
configure and store remote configurations
Diffstat (limited to 'weed/filer')
| -rw-r--r-- | weed/filer/filer_conf.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/weed/filer/filer_conf.go b/weed/filer/filer_conf.go index da02c5b20..bae0eac5c 100644 --- a/weed/filer/filer_conf.go +++ b/weed/filer/filer_conf.go @@ -13,12 +13,13 @@ import ( ) const ( - DirectoryEtcRoot = "/etc" - DirectoryEtcSeaweedFS = "/etc/seaweedfs" - FilerConfName = "filer.conf" - IamConfigDirecotry = "/etc/iam" - IamIdentityFile = "identity.json" - IamPoliciesFile = "policies.json" + DirectoryEtcRoot = "/etc" + DirectoryEtcSeaweedFS = "/etc/seaweedfs" + DirectoryEtcRemote = "/etc/remote" + FilerConfName = "filer.conf" + IamConfigDirecotry = "/etc/iam" + IamIdentityFile = "identity.json" + IamPoliciesFile = "policies.json" ) type FilerConf struct { |
