-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathez_letsencrypt.sh
executable file
·421 lines (395 loc) · 12.5 KB
/
ez_letsencrypt.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
#!/usr/bin/env bash
### DEFAULT VALUES ###
rsa_key_size=4096
nginx_container_name='letsencrypt_nginx'
le_hostname=""
le_email=""
le_nginx=""
le_certsdir=$(pwd)/certsdir
le_webrootdir=$(pwd)/webrootdir
checkcert=false
dryrun=false
renew=false
selinux=false
verbose=false
num_args=$#
### DEFAULT VALUES ###
# display usage
usage() {
cat <<EOF >&2
Usage: $0 -h <hostname> [<options>]
-h, --hostname <hostname> hostname you are requesting the ssl certificate for
-e, --email <email> email to register with eff
-n, --nginx <nginx_name> use existing nginx container for host challenge
-c, --certsdir <certs_dir> directory on host to store let's encrypt ssl certificate
-w, --webrootdir <webroot_dir> directory on host to store webroot challenge files
-k, --checkcert show certificate issuer, subject and dates for given hostname
-p, --pubkey show certificate pubkey for given hostname
-d, --dryrun test "renew" or "certonly" without saving any certificates to disk
-r, --renew renew all previously obtained certificates that are near expiry
-s, --selinux host is running centos with selinux enabled
-u, --usage show this usage message and exit
-v, --verbose verbose mode for debug output
EOF
exit 1;
}
# execute openssl s_client and display issuer subject email and dates
openssl_check_cert() {
echo | openssl s_client -servername $le_hostname -connect $le_hostname:443 2>/dev/null | \
openssl x509 -noout -issuer -subject -dates
}
# execute openssl s_client and display pubkey
openssl_pubkey() {
echo | openssl s_client -servername $le_hostname -connect $le_hostname:443 2>/dev/null | \
openssl x509 -noout -pubkey
}
# generate http nginx conf for let's encrypt webroot challenge
generate_http_letsencrypt_conf() {
OUTFILE=./letsencrypt.conf
cat <<EOF > ${OUTFILE}
server {
listen 80;
listen [::]:80;
server_name $le_hostname;
location ^~ /.well-known {
allow all;
root /data/letsencrypt/;
}
}
EOF
case $verbose in
(true)
echo "[DEBUG] letsencrypt.conf file"
cat $OUTFILE
;;
esac
}
# generate http/https nginx conf for verifying let's encrypt cert
generate_https_letsencrypt_conf() {
OUTFILE=./letsencrypt.conf
cat <<EOF > ${OUTFILE}
server {
listen 80;
listen [::]:80;
server_name $le_hostname;
location / {
rewrite ^ https://\$host\$request_uri? permanent;
}
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name $le_hostname;
ssl_certificate /etc/letsencrypt/live/$le_hostname/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/$le_hostname/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/$le_hostname/chain.pem;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
EOF
case $verbose in
(true)
echo "[DEBUG] letsencrypt.conf file"
cat $OUTFILE
;;
esac
}
# run nginx container exposing http port 80 only
run_http_nginx_container() {
IS_NGINX_UP=$(docker ps -f "name=${nginx_container}" -q)
if [ ! -z "$IS_NGINX_UP" ]; then
docker stop $nginx_container >/dev/null 2>&1
docker rm -fv $nginx_container >/dev/null 2>&1
fi
case $selinux in
(true)
docker run -d --name $nginx_container \
--publish 80:80 \
--volume $le_certsdir:/etc/letsencrypt:z,ro \
--volume $le_webrootdir:/data/letsencrypt:z,rw \
nginx:alpine >/dev/null 2>&1
;;
(false )
docker run -d --name $nginx_container \
--publish 80:80 \
--volume $le_certsdir:/etc/letsencrypt \
--volume $le_webrootdir:/data/letsencrypt \
nginx:alpine >/dev/null 2>&1
;;
esac
}
# run nginx container exposing http/https ports 80 and 443
run_https_nginx_container() {
IS_NGINX_UP=$(docker ps -f "name=${nginx_container}" -q)
if [ ! -z "$IS_NGINX_UP" ]; then
docker stop $nginx_container >/dev/null 2>&1
docker rm -fv $nginx_container >/dev/null 2>&1
fi
case $selinux in
(true)
docker run -d --name $nginx_container \
--publish 80:80 \
--publish 443:443 \
--volume $le_certsdir:/etc/letsencrypt:z,ro \
--volume $le_webrootdir:/data/letsencrypt:z,rw \
nginx:alpine >/dev/null 2>&1
;;
(false )
docker run -d --name $nginx_container \
--publish 80:80 \
--publish 443:443 \
--volume $le_certsdir:/etc/letsencrypt \
--volume $le_webrootdir:/data/letsencrypt \
nginx:alpine >/dev/null 2>&1
;;
esac
}
# remove nginx container and associate virtual volumes
remove_nginx_container() {
docker stop $nginx_container >/dev/null 2>&1
docker rm -fv $nginx_container >/dev/null 2>&1
}
# copy nginx conf file to running container
copy_server_conf() {
IS_NGINX_UP=$(docker ps -f "name=${nginx_container}" -q)
if [ ! -z "$IS_NGINX_UP" ]; then
sleep 3s
# letsencrypt.conf is copied using leading 0's to force it to be evaluated before default.conf on import
docker cp ./letsencrypt.conf $nginx_container:/etc/nginx/conf.d/0000_letsencrypt.conf >/dev/null 2>&1
docker exec $nginx_container /usr/sbin/nginx -t >/dev/null 2>&1
docker exec $nginx_container /usr/sbin/nginx -s reload >/dev/null 2>&1
rm -f ./letsencrypt.conf >/dev/null 2>&1
sleep 3s
else
cat <<EOF
[ERROR] Nginx container $nginx_container is not running; Unable to copy letsencrypt.conf...
EOF
exit 1;
fi
}
# run certbot container
run_certbot_container() {
# Set domain_args
domain_args="-d "$le_hostname
# Select appropriate email arg
case $le_email in
"") email_arg="--register-unsafely-without-email"; ;;
*) email_arg="--email $le_email"; ;;
esac
# Select appropriate staging arg
case $dryrun in
true) staging_arg="--dry-run"; ;;
*) staging_arg=""
esac
# Select appropriate run call
case $selinux in
(true)
case $renew in
(true)
docker run -it --rm \
-v $le_certsdir:/etc/letsencrypt:z,rw \
-v $le_webrootdir:/data/letsencrypt:z,rw \
certbot/certbot \
renew \
--webroot --webroot-path=/data/letsencrypt \
$staging_arg \
--rsa-key-size $rsa_key_size
;;
(false )
docker run -it --rm \
-v $le_certsdir:/etc/letsencrypt:z,rw \
-v $le_webrootdir:/data/letsencrypt:z,rw \
certbot/certbot \
certonly \
--webroot --webroot-path=/data/letsencrypt \
$staging_arg \
$email_arg \
$domain_args \
--rsa-key-size $rsa_key_size \
--agree-tos
;;
esac
;;
(false)
case $renew in
(true)
docker run -it --rm \
-v $le_certsdir:/etc/letsencrypt \
-v $le_webrootdir:/data/letsencrypt \
certbot/certbot \
renew \
--webroot --webroot-path=/data/letsencrypt \
$staging_arg \
--rsa-key-size $rsa_key_size
;;
(false )
docker run -it --rm \
-v $le_certsdir:/etc/letsencrypt \
-v $le_webrootdir:/data/letsencrypt \
certbot/certbot \
certonly \
--webroot --webroot-path=/data/letsencrypt \
$staging_arg \
$email_arg \
$domain_args \
--rsa-key-size $rsa_key_size \
--agree-tos
;;
esac
;;
esac
}
# transform long options to short ones
for arg in "$@"; do
shift
case "$arg" in
"--hostname") set -- "$@" "-h" ;;
"-hostname") echo "did you mean --hostname?"; usage ;;
"--email") set -- "$@" "-e" ;;
"-email") echo "did you mean --email?"; usage ;;
"--nginx") set -- "$@" "-n" ;;
"-nginx") echo "did you mean --nginx?"; usage ;;
"--certsdir") set -- "$@" "-c" ;;
"-certsdir") echo "did you mean --certsdir?"; usage ;;
"--webrootdir") set -- "$@" "-w" ;;
"-webrootdir") echo "did you mean --webrootdir?"; usage ;;
"--checkcert") set -- "$@" "-k" ;;
"-checkcert") echo "did you mean --checkcert?"; usage ;;
"--pubkey") set -- "$@" "-p" ;;
"-pubkey") echo "did you mean --pubkey?"; usage ;;
"--dryrun") set -- "$@" "-d" ;;
"-dryrun") echo "did you mean --dryrun?"; usage ;;
"--renew") set -- "$@" "-r" ;;
"-renew") echo "did you mean --renew?"; usage ;;
"--selinux") set -- "$@" "-s" ;;
"-selinux") echo "did you mean --selinux?"; usage ;;
"--usage") set -- "$@" "-u" ;;
"-usage") echo "did you mean --usage?"; usage ;;
"--verbose") set -- "$@" "-v" ;;
"-verbose") echo "did you mean --verbose?"; usage ;;
*) set -- "$@" "$arg"
esac
done
# parse user input for valid options
while getopts "h:e:n:c:w:kpdrsuv" o; do
case "${o}" in
h)
le_hostname=${OPTARG}
;;
e)
le_email=${OPTARG}
;;
n)
le_nginx=${OPTARG}
;;
c)
le_certsdir=${OPTARG}
;;
w)
le_webrootdir=${OPTARG}
;;
k)
checkcert=true
openssl_check_cert
exit 0;
;;
p)
pubkey=true
openssl_pubkey
exit 0;
;;
d)
dryrun=true
;;
r)
renew=true
;;
s)
selinux=true
;;
u)
usage
;;
v)
verbose=true
;;
*)
usage
;;
esac
done
shift $((OPTIND-1))
### MAIN ###
case $verbose in
(true)
cat <<EOF
[DEBUG] variable settings
- hostname = $le_hostname
- email = $le_email
- nginx = $le_nginx
- certsdir = $le_certsdir
- webrootdir = $le_webrootdir
- checkcert = $checkcert
- pubkey = $pubkey
- dryrun = $dryrun
- renew = $renew
- selinux = $selinux
- verbose = $verbose
EOF
;;
esac
# ensure a hostname is given
if [ -z "${le_hostname}" ]; then
usage
fi
# set nginx_container name
if [ ! -z "$le_nginx" ]; then
nginx_container=$le_nginx
else
nginx_container=$nginx_container_name
fi
# generate http letsencrypt.conf
generate_http_letsencrypt_conf
# run http nginx if needed
if [ -z "$le_nginx" ]; then
run_http_nginx_container
fi
# add letsencrypt.conf to nginx
copy_server_conf
# run the certbot container
run_certbot_container
# remove http nginx if needed
if [ -z "$le_nginx" ]; then
remove_nginx_container
fi
# display --checkcert and --pubkey to user if this is the first time obtaining a certificate
case $dryrun in
(false)
case $renew in
(false)
# run https nginx if needed
if [ -z "$le_nginx" ]; then
generate_https_letsencrypt_conf
run_https_nginx_container
copy_server_conf
echo "[INFO] Result of --checkcert"
openssl_check_cert
echo "[INFO] Result of --pubkey"
openssl_pubkey
# remove https nginx if needed
remove_nginx_container
fi
# inform user of nginx ssl configuration
cat <<EOF
[INFO] Nginx ssl certificate configuration values (relative to nginx container: $nginx_container)
- ssl_certificate /etc/letsencrypt/live/$le_hostname/fullchain.pem;
- ssl_certificate_key /etc/letsencrypt/live/$le_hostname/privkey.pem;
- ssl_trusted_certificate /etc/letsencrypt/live/$le_hostname/chain.pem;
EOF
;;
esac
;;
esac
exit 0;