aboutsummaryrefslogtreecommitdiff
path: root/weed/command/server.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-11-21 16:50:42 -0800
committerChris Lu <chris.lu@gmail.com>2018-11-21 16:50:42 -0800
commit60d3681371ae9d1dfc1a6f6db4e42e654a3346f1 (patch)
treef402bf77776373028eca250323c5091a60e191d3 /weed/command/server.go
parent393e1f70ad2adf270fabc673e8ffb5f3e2826684 (diff)
downloadseaweedfs-60d3681371ae9d1dfc1a6f6db4e42e654a3346f1.tar.xz
seaweedfs-60d3681371ae9d1dfc1a6f6db4e42e654a3346f1.zip
default images.fix.orientation to false
Diffstat (limited to 'weed/command/server.go')
-rw-r--r--weed/command/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/server.go b/weed/command/server.go
index 21f39924c..eca405d9d 100644
--- a/weed/command/server.go
+++ b/weed/command/server.go
@@ -89,7 +89,7 @@ func init() {
serverOptions.v.port = cmdServer.Flag.Int("volume.port", 8080, "volume server http listen port")
serverOptions.v.publicPort = cmdServer.Flag.Int("volume.port.public", 0, "volume server public port")
serverOptions.v.indexType = cmdServer.Flag.String("volume.index", "memory", "Choose [memory|leveldb|boltdb|btree] mode for memory~performance balance.")
- serverOptions.v.fixJpgOrientation = cmdServer.Flag.Bool("volume.images.fix.orientation", true, "Adjust jpg orientation when uploading.")
+ serverOptions.v.fixJpgOrientation = cmdServer.Flag.Bool("volume.images.fix.orientation", false, "Adjust jpg orientation when uploading.")
serverOptions.v.readRedirect = cmdServer.Flag.Bool("volume.read.redirect", true, "Redirect moved or non-local volumes.")
serverOptions.v.publicUrl = cmdServer.Flag.String("volume.publicUrl", "", "publicly accessible address")