Created
November 13, 2018 17:08
-
-
Save jwkidd3/185a762a7961f96b62e96a34c61e6ff7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 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