You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -86,28 +86,36 @@ npm run container:build --build-arg PORT=3080
86
86
```bash
87
87
export APP_MODE=advanced-wallet-manager
88
88
export KMS_URL=https://your-kms-service
89
-
export SERVER_TLS_KEY_PATH=./server.key
90
-
export SERVER_TLS_CERT_PATH=./server.crt
91
-
export KMS_SERVER_CA_CERT_PATH=./server.crt
89
+
export SERVER_TLS_KEY_PATH=./demo.key
90
+
export SERVER_TLS_CERT_PATH=./demo.crt
91
+
export KMS_CLIENT_TLS_KEY_PATH=./demo.key
92
+
export KMS_CLIENT_TLS_CERT_PATH=./demo.crt
93
+
export KMS_SERVER_CA_CERT_PATH=./demo.crt
92
94
export KMS_SERVER_CERT_ALLOW_SELF_SIGNED=true
93
95
export CLIENT_CERT_ALLOW_SELF_SIGNED=true
94
96
npm start
95
97
```
96
98
99
+
**Note:** KMS client certificates are required for outbound mTLS connections. For testing, we reuse the demo certificates, but in production, use separate certificates for security.
**Note:** AWM client certificates are required for outbound mTLS connections to Advanced Wallet Manager. For testing, we reuse the demo certificates, but in production, use separate certificates for security.
0 commit comments