Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Created November 13, 2018 17:08
Show Gist options
  • Save jwkidd3/185a762a7961f96b62e96a34c61e6ff7 to your computer and use it in GitHub Desktop.
Save jwkidd3/185a762a7961f96b62e96a34c61e6ff7 to your computer and use it in GitHub Desktop.
- hosts: web
tasks:
- name: Installs apache web server
apt:
pkg: apache2
state: present
update_cache: true
- name: Push default virtual host configuration
copy:
src: files/awesome-app
dest: /etc/apache2/sites-available/awesome-app
mode: 0640
- name: Disable the default virtualhost
file:
dest: /etc/apache2/sites-enabled/default
state: absent
notify:
- restart apache
- name: Disable the default ssl virtualhost
file:
dest: /etc/apache2/sites-enabled/default-ssl
state: absent
notify:
- restart apache
- name: Activates our virtualhost
file:
src: /etc/apache2/sites-available/awesome-app
dest: /etc/apache2/sites-enabled/awesome-app
state: link
notify:
- restart apache
handlers:
- name: restart apache
service:
name: apache2
state: restarted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment