Files
nomad_mcp/.env.ssl
Nicolas Koehl a0fc5c2bb2 🔒 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>
2025-06-03 17:25:39 +07:00

9 lines
422 B
Plaintext

# 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"
# Usage: source .env.ssl
echo "SSL configuration loaded. CA bundle: $(pwd)/certs/complete_ca_bundle.pem"
EOF < /dev/null