| 
									
										
										
										
											2017-01-29 12:30:02 +00:00
										 |  |  | #!/bin/bash
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # --config-dir, --logs-dir, and --work-dir | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #certbot certonly \ | 
					
						
							|  |  |  | #	--webroot \ | 
					
						
							|  |  |  | #	--webroot-path data/global/ \ | 
					
						
							|  |  |  | #	-d www.tildefriends.net \ | 
					
						
							|  |  |  | #	-d tildefriends.net \ | 
					
						
							|  |  |  | #	--config-dir data/global/letsencrypt/etc \ | 
					
						
							|  |  |  | #	--logs-dir data/global/letsencrypt/logs \ | 
					
						
							|  |  |  | #	--work-dir data/global/letsencrypt/work \ | 
					
						
							|  |  |  | #	--cert-path data/global/httpd/certificate.pem \ | 
					
						
							|  |  |  | #	--key-path data/global/httpd/privatekey.pem \ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | certbot renew \
 | 
					
						
							|  |  |  | 	--webroot \
 | 
					
						
							|  |  |  | 	--webroot-path data/global/ \
 | 
					
						
							|  |  |  | 	--config-dir data/global/letsencrypt/etc \
 | 
					
						
							|  |  |  | 	--logs-dir data/global/letsencrypt/logs \
 | 
					
						
							|  |  |  | 	--work-dir data/global/letsencrypt/work \
 | 
					
						
							|  |  |  | 	--cert-path data/global/httpd/certificate.pem \
 | 
					
						
							|  |  |  | 	--key-path data/global/httpd/privatekey.pem \
 | 
					
						
							| 
									
										
										
										
											2020-09-23 01:58:13 +00:00
										 |  |  | 	$* |