From 8d8e7942575ba527944514e1e1ca6a713e8a1b71 Mon Sep 17 00:00:00 2001 From: shockrah Date: Sun, 26 Dec 2021 14:09:03 -0800 Subject: [PATCH] - removing old nginx playbook --- playbooks/alpha/nginx.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 playbooks/alpha/nginx.yml diff --git a/playbooks/alpha/nginx.yml b/playbooks/alpha/nginx.yml deleted file mode 100644 index ff9bd2a..0000000 --- a/playbooks/alpha/nginx.yml +++ /dev/null @@ -1,25 +0,0 @@ -# This playbook just installs nginx so that it is ready to configure -# we don't bother with extra user accounts like with Beta because we -# are only concerned with using nginx to serve fully containerized -# applications. Not static files ---- -- hosts: alpha - tasks: - - name: Install Nginx - become: yes - apt: - name: nginx - update_cache: yes - state: present - - - name: Update Snap - become: yes - community.general.snap: - name: core - state: present - - - name: Install Certbot - community.general.snap: - name: certbot - classic: yes -