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>
9 lines
422 B
Plaintext
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 |