From e2e8e25f8109432b476bd20f058f848c377f5b96 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Thu, 14 Jul 2016 18:32:10 +0000 Subject: [PATCH] taiga needs port 443 now --- inventory/host_vars/taiga.fedorainfracloud.org | 2 +- inventory/host_vars/taigastg.fedorainfracloud.org | 2 +- roles/certbot/tasks/main.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/inventory/host_vars/taiga.fedorainfracloud.org b/inventory/host_vars/taiga.fedorainfracloud.org index 432e59cd05..7d8d78eb82 100644 --- a/inventory/host_vars/taiga.fedorainfracloud.org +++ b/inventory/host_vars/taiga.fedorainfracloud.org @@ -2,7 +2,7 @@ image: "{{ fedora23_x86_64 }}" instance_type: m1.medium keypair: fedora-admin-20130801 -security_group: ssh-anywhere-persistent,web-80-anywhere-persistent,default +security_group: ssh-anywhere-persistent,web-443-anywhere-persistent,web-80-anywhere-persistent,default zone: nova tcp_ports: [22, 80, 443] diff --git a/inventory/host_vars/taigastg.fedorainfracloud.org b/inventory/host_vars/taigastg.fedorainfracloud.org index 2a81af7317..a29691b02d 100644 --- a/inventory/host_vars/taigastg.fedorainfracloud.org +++ b/inventory/host_vars/taigastg.fedorainfracloud.org @@ -2,7 +2,7 @@ image: "{{ fedora23_x86_64 }}" instance_type: m1.small keypair: fedora-admin-20130801 -security_group: ssh-anywhere-persistent,web-80-anywhere-persistent,default +security_group: ssh-anywhere-persistent,web-443-anywhere-persistent,web-80-anywhere-persistent,default zone: nova tcp_ports: [22, 80, 443] diff --git a/roles/certbot/tasks/main.yml b/roles/certbot/tasks/main.yml index 84967d1203..a3c8122a83 100644 --- a/roles/certbot/tasks/main.yml +++ b/roles/certbot/tasks/main.yml @@ -4,7 +4,7 @@ - certbot - name: Create directory for ACME challenge - file: dest=/srv/web/acme-challenge state=directory + file: dest=/srv/web/acme-challenge state=directory owner=root group=root mode=755 - name: Allow httpd to see ACME challenge directory copy: src=acme-challenge.conf dest=/etc/httpd/conf.d/acme-challenge.conf