From: Lorin Hochstein Date: Sun, 15 Feb 2015 18:23:16 +0000 (-0500) Subject: SSL -> TLS X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=4e5ac19b1efef729b448ea8aa2a59ca13d52774a;p=ansiblebook.git SSL -> TLS --- 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