aboutsummaryrefslogtreecommitdiff
path: root/weed/command/filer.go
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2020-10-21 23:56:03 -0700
committerGitHub <noreply@github.com>2020-10-21 23:56:03 -0700
commitde044e466ed02c9098c015f765134a98bab29d8e (patch)
tree0a4ac348da654e8a808a25b982a2397500f39c39 /weed/command/filer.go
parente73d6c9526078951bd5f3cc848b1bc61573d948c (diff)
parenta9a7005687abc7cdc4076d53c334c85281ae3188 (diff)
downloadseaweedfs-de044e466ed02c9098c015f765134a98bab29d8e.tar.xz
seaweedfs-de044e466ed02c9098c015f765134a98bab29d8e.zip
Merge pull request #1553 from kmlebedev/multi_domainname
Multi domainname
Diffstat (limited to 'weed/command/filer.go')
-rw-r--r--weed/command/filer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/filer.go b/weed/command/filer.go
index 793401fe3..1ea334e61 100644
--- a/weed/command/filer.go
+++ b/weed/command/filer.go
@@ -69,7 +69,7 @@ func init() {
// start s3 on filer
filerStartS3 = cmdFiler.Flag.Bool("s3", false, "whether to start S3 gateway")
filerS3Options.port = cmdFiler.Flag.Int("s3.port", 8333, "s3 server http listen port")
- filerS3Options.domainName = cmdFiler.Flag.String("s3.domainName", "", "suffix of the host name, {bucket}.{domainName}")
+ filerS3Options.domainName = cmdFiler.Flag.String("s3.domainName", "", "suffix of the host name in comma separated list, {bucket}.{domainName}")
filerS3Options.tlsPrivateKey = cmdFiler.Flag.String("s3.key.file", "", "path to the TLS private key file")
filerS3Options.tlsCertificate = cmdFiler.Flag.String("s3.cert.file", "", "path to the TLS certificate file")
filerS3Options.config = cmdFiler.Flag.String("s3.config", "", "path to the config file")