===================================================================
SSL / TLS Certificate Package for: sistunnel.jezt.cloud
Generated: 2026-09-02 11:08:54 UTC
===================================================================

Contents of this archive:
- privkey.pem   : Private key (Keep strictly confidential and secure)
- fullchain.pem : Certificate and intermediate chain combined (Recommended)
- cert.pem      : Server certificate only
- chain.pem     : Intermediate CA certificate chain only

-------------------------------------------------------------------
1. NGINX Configuration Example
-------------------------------------------------------------------
server {
    listen 443 ssl http2;
    server_name sistunnel.jezt.cloud;

    ssl_certificate /path/to/fullchain.pem;
    ssl_certificate_key /path/to/privkey.pem;

    ssl_protocols TLSv1.2 TLSv1.3;
    ssl_ciphers HIGH:!aNULL:!MD5;
}

-------------------------------------------------------------------
2. Apache Configuration Example
-------------------------------------------------------------------
<VirtualHost *:443>
    ServerName sistunnel.jezt.cloud
    SSLEngine on
    SSLCertificateFile /path/to/cert.pem
    SSLCertificateKeyFile /path/to/privkey.pem
    SSLCertificateChainFile /path/to/chain.pem
</VirtualHost>

-------------------------------------------------------------------
3. Docker / Microservices
-------------------------------------------------------------------
Mount fullchain.pem and privkey.pem into your container volume and set
proper file permissions (e.g. chmod 600 privkey.pem, chmod 644 fullchain.pem).
===================================================================
