Skip to content

Commit 77ea6ad

Browse files
Update some comments in code
1 parent d3004f6 commit 77ea6ad

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/docker-compose.yml

+3-3
Original file line numberDiff line numberDiff 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

1818
volumes:
1919
nginx_secrets:

src/scripts/start_nginx_certbot.sh

+1-1
Original file line numberDiff line numberDiff 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.
114114
while [ -z "${exit_code}" ] || [ "${exit_code}" = "129" ] || [ "${exit_code}" = "138" ]; do

0 commit comments

Comments
 (0)