Initial commit
Dieser Commit ist enthalten in:
10
v2_nginx/ssl/.gitignore
vendored
Normale Datei
10
v2_nginx/ssl/.gitignore
vendored
Normale Datei
@ -0,0 +1,10 @@
|
||||
# Ignore all SSL certificates
|
||||
*.pem
|
||||
*.crt
|
||||
*.key
|
||||
*.p12
|
||||
*.pfx
|
||||
|
||||
# But keep the README
|
||||
!README.md
|
||||
!.gitignore
|
||||
29
v2_nginx/ssl/README.md
Normale Datei
29
v2_nginx/ssl/README.md
Normale Datei
@ -0,0 +1,29 @@
|
||||
# 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:
|
||||
```bash
|
||||
cp /path/to/fullchain.pem ./
|
||||
cp /path/to/privkey.pem ./
|
||||
```
|
||||
|
||||
Generate dhparam.pem if not exists:
|
||||
```bash
|
||||
openssl dhparam -out dhparam.pem 2048
|
||||
```
|
||||
|
||||
## File Permissions:
|
||||
```bash
|
||||
chmod 644 fullchain.pem
|
||||
chmod 600 privkey.pem
|
||||
chmod 644 dhparam.pem
|
||||
```
|
||||
|
||||
**IMPORTANT**: Never commit actual SSL certificates to the repository!
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren