Skip to content

Commit 90913a1

Browse files
committed
Issue #83: Final tweaks to examples in Chapter 12.
1 parent bc8375a commit 90913a1

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

https-letsencrypt/inventory.example

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
[letsencrypt]
2-
subdomain.example.com ansible_ssh_user=myuser [email protected]
2+
subdomain.example.com
3+
4+
[letsencrypt:vars]
5+
ansible_ssh_user=myuser
6+

https-letsencrypt/templates/https-letsencrypt.conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ server {
88
return 301 https://$host$request_uri;
99
}
1010

11-
# Serve HTTPS traffic using the self-signed certificate created by Ansible.
11+
# Serve HTTPS traffic using the Let's Encrypt certificate.
1212
server {
1313
listen 443 ssl default_server;
1414
server_name {{ inventory_hostname }};

https-nginx-proxy/provisioning/templates/https.test.conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ server {
88
return 301 https://$host$request_uri;
99
}
1010

11-
# Proxy HTTPS traffic using the self-signed certificate created by Ansible.
11+
# Proxy HTTPS traffic using a self-signed certificate.
1212
server {
1313
listen 443 ssl default_server;
1414
server_name {{ server_hostname }};

0 commit comments

Comments
 (0)