File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ services:
11
11
ports :
12
12
- 80:80
13
13
- 443:443
14
- volumes :
15
- - nginx_secrets:/etc/letsencrypt
16
- - ./user_conf.d:/etc/nginx/user_conf.d
14
+ volumes : # Storage can be either a
15
+ - nginx_secrets:/etc/letsencrypt # Docker managed volume (see list at the bottom)
16
+ - ./user_conf.d:/etc/nginx/user_conf.d # or a host mount with a relative or full path.
17
17
18
18
volumes :
19
19
nginx_secrets :
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ trap "reopen_logs" USR1
108
108
# Nginx and the certbot update-loop process are now our children. As a parent
109
109
# we will wait for both of their PIDs, and if one of them exits we will follow
110
110
# suit and use the same status code as the program which exited first.
111
- # The loop is necessary since the HUP trap will make any "wait" return
111
+ # The loop is necessary since the signal traps will make any "wait" return
112
112
# immediately when triggered, and to not exit the entire program we will have
113
113
# to wait on the original PIDs again.
114
114
while [ -z " ${exit_code} " ] || [ " ${exit_code} " = " 129" ] || [ " ${exit_code} " = " 138" ]; do
You can’t perform that action at this time.
0 commit comments