10 lines
No EOL
344 B
Bash
10 lines
No EOL
344 B
Bash
#!/usr/bin/env bash
|
|
# @file EasyEngine
|
|
# @brief Configures EasyEngine to use the CloudFlare API for configuring Let's Encrypt
|
|
|
|
if command -v ee > /dev/null; then
|
|
if [ -n "$CLOUDFLARE_EMAIL" ] && [ -n "$CLOUDFLARE_API_KEY" ]; then
|
|
ee config set le-mail "$CLOUDFLARE_EMAIL"
|
|
ee config set cloudflare-api-key "$CLOUDFLARE_API_KEY"
|
|
fi
|
|
fi |