diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-02-09 14:31:51 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-02-09 14:31:51 -0800 |
| commit | e7b63d50b16e435dab31eda172896976c30d252c (patch) | |
| tree | ca63d5b82c29ba912e11b1769f44cc6b4d62d6bb | |
| parent | 9ed364f053ff3a5c8675d33358a4cc7f63a79985 (diff) | |
| download | seaweedfs-e7b63d50b16e435dab31eda172896976c30d252c.tar.xz seaweedfs-e7b63d50b16e435dab31eda172896976c30d252c.zip | |
add s3.config to server.go
| -rw-r--r-- | weed/command/server.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/command/server.go b/weed/command/server.go index 6aa68b6d2..d7d768df1 100644 --- a/weed/command/server.go +++ b/weed/command/server.go @@ -97,6 +97,7 @@ func init() { s3Options.domainName = cmdServer.Flag.String("s3.domainName", "", "suffix of the host name, {bucket}.{domainName}") s3Options.tlsPrivateKey = cmdServer.Flag.String("s3.key.file", "", "path to the TLS private key file") s3Options.tlsCertificate = cmdServer.Flag.String("s3.cert.file", "", "path to the TLS certificate file") + s3Options.config = cmdServer.Flag.String("s3.config", "", "path to the config file") } |
