Skip to content

Commit a27d0d1

Browse files
committed
Fix SSL environment variable names in smithery.yaml
Update smithery.yaml to use consistent SSL environment variable names that match the actual implementation in src/common/config.py: - redisCAPath → redisSSLCAPath (maps to REDIS_SSL_CA_PATH) - redisCertReqs → redisSSLCertReqs (maps to REDIS_SSL_CERT_REQS) - redisCACerts → redisSSLCACerts (maps to REDIS_SSL_CA_CERTS) This ensures the Smithery configuration uses the correct environment variable names that the server actually reads.
1 parent 8d6c7bf commit a27d0d1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

smithery.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ startCommand:
2727
type: boolean
2828
default: false
2929
description: Enable SSL for Redis connection
30-
redisCAPath:
30+
redisSSLCAPath:
3131
type: string
3232
default: ""
3333
description: CA certificate path for verifying server
@@ -39,11 +39,11 @@ startCommand:
3939
type: string
4040
default: ""
4141
description: Client certificate file for authentication
42-
redisCertReqs:
42+
redisSSLCertReqs:
4343
type: string
4444
default: required
4545
description: Certificate requirements
46-
redisCACerts:
46+
redisSSLCACerts:
4747
type: string
4848
default: ""
4949
description: Path to trusted CA certificates file
@@ -59,11 +59,11 @@ startCommand:
5959
REDIS_USERNAME: config.redisUsername,
6060
REDIS_PWD: config.redisPwd,
6161
REDIS_SSL: String(config.redisSSL),
62-
REDIS_CA_PATH: config.redisCAPath,
62+
REDIS_SSL_CA_PATH: config.redisSSLCAPath,
6363
REDIS_SSL_KEYFILE: config.redisSSLKeyfile,
6464
REDIS_SSL_CERTFILE: config.redisSSLCertfile,
65-
REDIS_CERT_REQS: config.redisCertReqs,
66-
REDIS_CA_CERTS: config.redisCACerts
65+
REDIS_SSL_CERT_REQS: config.redisSSLCertReqs,
66+
REDIS_SSL_CA_CERTS: config.redisSSLCACerts
6767
}
6868
})
6969
exampleConfig:
@@ -72,8 +72,8 @@ startCommand:
7272
redisUsername: default
7373
redisPwd: ""
7474
redisSSL: false
75-
redisCAPath: ""
75+
redisSSLCAPath: ""
7676
redisSSLKeyfile: ""
7777
redisSSLCertfile: ""
78-
redisCertReqs: required
79-
redisCACerts: ""
78+
redisSSLCertReqs: required
79+
redisSSLCACerts: ""

0 commit comments

Comments
 (0)