File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Configuration for this docker image
2
2
nginx-certbot :
3
+ # Diffie-Hellman parameter size. Falls back to the DHPARAM_SIZE environment variable or,
4
+ # if that is unset, to '2048'.
3
5
dhparam-size : 2048
6
+ # Certificate renewal interval. Falls back to the RENEWAL_INTERVAL environment variable
7
+ # or, if that is unset, to '8d'.
4
8
renewal-interval : 8d
9
+ # Boolean to enable nginx debug mode and more verbose logging output. Falls back to the
10
+ # DEBUG environment variable or, if that is unset, to 'false'.
5
11
debug : false
6
12
7
13
# Certbot parameters.
@@ -24,6 +30,9 @@ certbot:
24
30
# environment variable or, if that is unset, to 2048. The key size can be overriden on the
25
31
# certificate level.
26
32
rsa-key-size : 2048
33
+ # Boolean to enable the Let's Encrypt staging servers. Falls back to the STAGING
34
+ # environment variable or, if that is unset, to 'false'.
35
+ staging : false
27
36
28
37
# Array of certificate specifications.
29
38
# If the 'certificates' key exist (even if the array is empty) the automatic discovery of
Original file line number Diff line number Diff line change 49
49
50
50
# Use the correct challenge URL depending on if we want staging or not.
51
51
if [ " ${certbot_staging} " = " 1" ]; then
52
- debug " Using staging environment"
52
+ debug " Using staging environment ( ${certbot_staging_url} ) "
53
53
letsencrypt_url=" ${certbot_staging_url} "
54
54
else
55
- debug " Using production environment"
55
+ debug " Using production environment ( ${certbot_production_url} ) "
56
56
letsencrypt_url=" ${certbot_production_url} "
57
57
fi
58
58
You can’t perform that action at this time.
0 commit comments