certman/example.env

24 lines
546 B
Bash
Raw Permalink Normal View History

2025-03-03 13:12:13 +01:00
CERTWARDEN_SERVER="certwarden.dmz.skyfritt.net:443"
# Certificate Paths
2025-05-07 13:04:49 +02:00
CERT_PATH="/etc/certs"
KEY_PATH="/etc/certs"
2025-03-03 13:12:13 +01:00
TEMP_PATH="/tmp/certman"
# Service Configuration
2025-05-07 13:04:49 +02:00
SERVICE_NAME="nginx"
CERT_OWNER="www-data"
CERT_GROUP="www-data"
2025-03-03 13:12:13 +01:00
CERT_PERMISSIONS="644"
KEY_PERMISSIONS="600"
# Certificate Configurations (JSON format)
2025-05-07 13:04:49 +02:00
# Add as many or few domains as you need (but remember to add or delete the JSON comma!)
2025-03-03 13:12:13 +01:00
CERTIFICATES='[
{
"domain": "example.com",
"cert_api_key": "your_cert_api_key",
"key_api_key": "your_key_api_key"
}
]'