diff options
| author | chrislu <chris.lu@gmail.com> | 2025-05-04 05:46:33 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2025-05-04 05:46:33 -0700 |
| commit | ed15357c7a8b76a9d2344a0fece11ccb4edf3eef (patch) | |
| tree | af599105550e14c475d794ea434b4239ec79f280 | |
| parent | 21514e1feaecb1f1f052bd47608b15f8584258d7 (diff) | |
| download | seaweedfs-ed15357c7a8b76a9d2344a0fece11ccb4edf3eef.tar.xz seaweedfs-ed15357c7a8b76a9d2344a0fece11ccb4edf3eef.zip | |
adds tls examples
related to https://github.com/seaweedfs/seaweedfs/pull/6738
| -rw-r--r-- | weed/command/scaffold/filer.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/weed/command/scaffold/filer.toml b/weed/command/scaffold/filer.toml index ca6b99f38..c834c9689 100644 --- a/weed/command/scaffold/filer.toml +++ b/weed/command/scaffold/filer.toml @@ -171,6 +171,10 @@ enabled = false address = "localhost:6379" password = "" database = 0 +enable_tls = false +ca_cert_path = "" +client_cert_path = "" +client_key_path = "" # This changes the data layout. Only add new directories. Removing/Updating will cause data loss. superLargeDirectories = [] @@ -181,6 +185,10 @@ masterName = "master" username = "" password = "" database = 0 +enable_tls = false +ca_cert_path = "" +client_cert_path = "" +client_key_path = "" [redis_cluster2] enabled = false @@ -193,6 +201,10 @@ addresses = [ "localhost:30006", ] password = "" +enable_tls = false +ca_cert_path = "" +client_cert_path = "" +client_key_path = "" # allows reads from slave servers or the master, but all writes still go to the master readOnly = false # automatically use the closest Redis server for reads @@ -206,6 +218,10 @@ enabled = false address = "localhost:6379" password = "" database = 0 +enable_tls = false +ca_cert_path = "" +client_cert_path = "" +client_key_path = "" # This changes the data layout. Only add new directories. Removing/Updating will cause data loss. superLargeDirectories = [] @@ -216,6 +232,10 @@ masterName = "master" username = "" password = "" database = 0 +enable_tls = false +ca_cert_path = "" +client_cert_path = "" +client_key_path = "" [redis_lua_cluster] enabled = false @@ -228,6 +248,10 @@ addresses = [ "localhost:30006", ] password = "" +enable_tls = false +ca_cert_path = "" +client_cert_path = "" +client_key_path = "" # allows reads from slave servers or the master, but all writes still go to the master readOnly = false # automatically use the closest Redis server for reads |
