🔒 Configure SSL certificates for MCP network connections

Update CA bundle configuration to enable secure HTTPS connections to internal Mei Sheng Group services. Extract and configure complete certificate chain from vault.ds.meisheng.group PKI system.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-06-03 17:25:39 +07:00
parent dc2fe4c425
commit a0fc5c2bb2
5 changed files with 83 additions and 16 deletions

View File

@ -1,16 +1,9 @@
# SSL Certificate Configuration for Mei Sheng Group Services
# Source this file to configure SSL verification for internal services
# SSL Configuration for Mei Sheng Group Internal Services
export SSL_CERT_FILE="$(pwd)/certs/complete_ca_bundle.pem"
export REQUESTS_CA_BUNDLE="$(pwd)/certs/complete_ca_bundle.pem"
export CURL_CA_BUNDLE="$(pwd)/certs/complete_ca_bundle.pem"
export GIT_SSL_CAINFO="$(pwd)/certs/complete_ca_bundle.pem"
# Certificate bundle path
export SSL_CERT_FILE="$(pwd)/certs/meisheng_ca_bundle.pem"
export REQUESTS_CA_BUNDLE="$(pwd)/certs/meisheng_ca_bundle.pem"
export CURL_CA_BUNDLE="$(pwd)/certs/meisheng_ca_bundle.pem"
# Python SSL configuration
export PYTHONHTTPSVERIFY=1
# Git configuration
export GIT_SSL_CAINFO="$(pwd)/certs/meisheng_ca_bundle.pem"
echo "✅ SSL certificates configured for Mei Sheng Group services"
echo "📁 CA Bundle: $SSL_CERT_FILE"
# Usage: source .env.ssl
echo "SSL configuration loaded. CA bundle: $(pwd)/certs/complete_ca_bundle.pem"
EOF < /dev/null