From 4e5ac19b1efef729b448ea8aa2a59ca13d52774a Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Sun, 15 Feb 2015 13:23:16 -0500 Subject: [PATCH] SSL -> TLS --- ch02/playbooks/web-tls.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ch02/playbooks/web-tls.yml b/ch02/playbooks/web-tls.yml index 537476e..c69a5c8 100644 --- a/ch02/playbooks/web-tls.yml +++ b/ch02/playbooks/web-tls.yml @@ -1,5 +1,5 @@ --- -- name: Configure webserver with nginx and ssl +- name: Configure webserver with nginx and tls hosts: webservers sudo: True vars: @@ -10,12 +10,12 @@ tasks: - name: Install nginx apt: name=nginx update_cache=yes cache_valid_time=3600 - - name: create directories for ssl certificates + - name: create directories for TLS certificates file: path=/etc/nginx/ssl state=directory - - name: copy SSL key + - name: copy TLS key copy: src=files/nginx.key dest={{ key_file }} owner=root mode=0600 notify: restart nginx - - name: copy SSL certificate + - name: copy TLS certificate copy: src=files/nginx.crt dest={{ cert_file }} notify: restart nginx - name: copy nginx config file -- 2.44.0