File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ services:
1111 ports :
1212 - 80:80
1313 - 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.
1717
1818volumes :
1919 nginx_secrets :
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ trap "reopen_logs" USR1
108108# Nginx and the certbot update-loop process are now our children. As a parent
109109# we will wait for both of their PIDs, and if one of them exits we will follow
110110# 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
112112# immediately when triggered, and to not exit the entire program we will have
113113# to wait on the original PIDs again.
114114while [ -z " ${exit_code} " ] || [ " ${exit_code} " = " 129" ] || [ " ${exit_code} " = " 138" ]; do
You can’t perform that action at this time.
0 commit comments