aboutsummaryrefslogtreecommitdiff
path: root/weed/command/scaffold
diff options
context:
space:
mode:
authorvadimartynov <166398828+vadimartynov@users.noreply.github.com>2024-07-11 18:53:18 +0400
committerGitHub <noreply@github.com>2024-07-11 07:53:18 -0700
commitde60f383de3202b2e5aaa57b9766376cd5b9b129 (patch)
tree202b0bf377d8c6f9580fea6cf408936b87317cdb /weed/command/scaffold
parent2addcd1623041f9251c23a141f4d0c5df0636a45 (diff)
downloadseaweedfs-de60f383de3202b2e5aaa57b9766376cd5b9b129.tar.xz
seaweedfs-de60f383de3202b2e5aaa57b9766376cd5b9b129.zip
Added tls for http handlers (#5764)
* Added https handler for filer * Added example for security.toml
Diffstat (limited to 'weed/command/scaffold')
-rw-r--r--weed/command/scaffold/security.toml11
1 files changed, 9 insertions, 2 deletions
diff --git a/weed/command/scaffold/security.toml b/weed/command/scaffold/security.toml
index c5b2a563c..687854264 100644
--- a/weed/command/scaffold/security.toml
+++ b/weed/command/scaffold/security.toml
@@ -94,19 +94,26 @@ allowed_commonNames = "" # comma-separated SSL certificate common names
[grpc.client]
cert = ""
key = ""
-
-# volume server https options
# Note: work in progress!
# this does not work with other clients, e.g., "weed filer|mount" etc, yet.
[https.client]
enabled = true
+# volume server https options
[https.volume]
cert = ""
key = ""
ca = ""
+# master server https options
[https.master]
cert = ""
key = ""
ca = ""
+
+# filer server https options
+[https.filer]
+cert = ""
+key = ""
+ca = ""
+# disable_tls_verify_client_cert = true|false (default: false)