TLS Termination - CI/CD用語集の定義
TLS terminationは、load balancerやreverse proxyで受信するHTTPSトラフィックを復号し、バックエンドサービスがプレーンなHTTPを受け取れるようにすることです。証明書管理を一元化し、暗号処理をアプリケーションサーバーからオフロードします。
Termination vs passthrough
terminationでは、プロキシが証明書を保持し、内部で再暗号化するかプレーンテキストを転送します。TLS passthroughでは、暗号化されたトラフィックがバックエンドに到達し、バックエンド自身が証明書を保持する必要があります。
関連ガイド
Reverse Proxy - CI/CD Glossary DefinitionReverse Proxy: A reverse proxy is a server that sits in front of backend services and forwards client request…
Mutual TLS (mTLS) - CI/CD Glossary DefinitionMutual TLS (mTLS): Mutual TLS is TLS in which both the client and the server present and verify certificates,…
Certificate Pinning - CI/CD Glossary DefinitionCertificate Pinning: Certificate pinning is hard-coding the expected certificate or public key of a server in…