diff options
| author | Amir H. Yeganemehr <yeganemehr@jeyserver.com> | 2023-06-27 01:22:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-26 16:22:45 -0700 |
| commit | f0d3c874b66282c1a9f825ba6731d8db628b3054 (patch) | |
| tree | e539789be4e0cf40c312fee7a0b3140dec034996 /weed/command/server.go | |
| parent | 4d64bdba650f9809336c4ed236901accc9831ab9 (diff) | |
| download | seaweedfs-f0d3c874b66282c1a9f825ba6731d8db628b3054.tar.xz seaweedfs-f0d3c874b66282c1a9f825ba6731d8db628b3054.zip | |
Unix Socket listener for S3 server (#4621)
Add localSocket option to s3 server
Diffstat (limited to 'weed/command/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 978cea117..249afdf10 100644 --- a/weed/command/server.go +++ b/weed/command/server.go @@ -147,6 +147,7 @@ func init() { s3Options.auditLogConfig = cmdServer.Flag.String("s3.auditLogConfig", "", "path to the audit log config file") s3Options.allowEmptyFolder = cmdServer.Flag.Bool("s3.allowEmptyFolder", true, "allow empty folders") s3Options.allowDeleteBucketNotEmpty = cmdServer.Flag.Bool("s3.allowDeleteBucketNotEmpty", true, "allow recursive deleting all entries along with bucket") + s3Options.localSocket = cmdServer.Flag.String("s3.localSocket", "", "default to /tmp/seaweedfs-s3-<port>.sock") iamOptions.port = cmdServer.Flag.Int("iam.port", 8111, "iam server http listen port") |
