We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f527bfb commit ce610d2Copy full SHA for ce610d2
src/entrypoint.sh
@@ -1,4 +1,26 @@
1
#!/bin/sh
2
+
3
4
+# Display a fun and helpful startup message
5
+cat << "EOF"
6
+ ____________________
7
+< Certbot, activate! >
8
+ --------------------
9
+ \ ^__^
10
+ \ (oo)\_______
11
+ (__)\ )\/\
12
+ ||----w |
13
+ || ||
14
+EOF
15
16
+echo "🚀 Let's Get Encrypted! 🚀"
17
+echo "🌐 Domain: $CERTBOT_DOMAIN"
18
+echo "📧 Email: $CERTBOT_EMAIL"
19
+echo "🔑 Key Type: $CERTBOT_KEY_TYPE"
20
+echo "⏰ Renewal Interval: $RENEWAL_INTERVAL seconds"
21
+echo "Let's Encrypt, shall we?"
22
+echo "-----------------------------------------------------------"
23
24
# Validate required environment variables
25
for var in CLOUDFLARE_API_TOKEN CERTBOT_DOMAIN CERTBOT_EMAIL CERTBOT_KEY_TYPE; do
26
if [ -z "$(eval echo \$$var)" ]; then
0 commit comments