Files
Claude Project Manager 0d7d888502 Initial commit
2025-07-05 17:51:16 +02:00
..
2025-07-05 17:51:16 +02:00
2025-07-05 17:51:16 +02:00

SSL Certificate Directory

This directory should contain the following files for SSL to work:

  1. fullchain.pem - The full certificate chain
  2. privkey.pem - The private key (keep this secure!)
  3. dhparam.pem - Diffie-Hellman parameters for enhanced security

For intelsight.de deployment:

Copy your SSL certificates here:

cp /path/to/fullchain.pem ./
cp /path/to/privkey.pem ./

Generate dhparam.pem if not exists:

openssl dhparam -out dhparam.pem 2048

File Permissions:

chmod 644 fullchain.pem
chmod 600 privkey.pem
chmod 644 dhparam.pem

IMPORTANT: Never commit actual SSL certificates to the repository!