64 lines
2.2 KiB
YAML
64 lines
2.2 KiB
YAML
#This play configs apapche for us
|
|
---
|
|
- name: Add certbot cron job
|
|
copy:
|
|
src: ../files/certbot-renew
|
|
dest: /etc/cron.weekly/certbot-renew
|
|
owner: root
|
|
mode: 744
|
|
|
|
#Sites
|
|
- name: Deploy Apache2 Site Config 000-default.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/000-default.conf
|
|
dest: /etc/apache2/sites-available/000-default.conf
|
|
|
|
- name: Deploy Apache2 Site Config default-ssl.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/default-ssl.conf
|
|
dest: /etc/apache2/sites-available/default-ssl.conf
|
|
|
|
- name: Deploy Apache2 Site Config thunix.cf.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/thunix.cf.conf
|
|
dest: /etc/apache2/sites-available/thunix.cf.conf
|
|
|
|
- name: Deploy Apache2 Site Config www.thunix.cf.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/www.thunix.cf.conf
|
|
dest: /etc/apache2/sites-available/www.thunix.cf.conf
|
|
|
|
- name: Deploy Apache2 Site Config ftp.thunix.cf.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/ftp.thunix.cf.conf
|
|
dest: /etc/apache2/sites-available/ftp.thunix.cf.conf
|
|
|
|
- name: Deploy Apache2 Site Config thunix.net.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/thunix.net.conf
|
|
dest: /etc/apache2/sites-available/thunix.net.conf
|
|
|
|
- name: Deploy Apache2 Site Config www.thunix.net.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/www.thunix.net.conf
|
|
dest: /etc/apache2/sites-available/www.thunix.net.conf
|
|
|
|
- name: Deploy apache2 site conf for ftp.thunix.net.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/ftp.thunix.net.conf
|
|
dest: /etc/apache2/sites-available/ftp.thunix.net.conf
|
|
|
|
- name: Deploy apache2 site conf for forums.thunix.net.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/forums.thunix.net.conf
|
|
dest: /etc/apache2/sites-available/forums.thunix.net.conf
|
|
|
|
- name: Deploy apache2 site conf for git.thunix.net.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/git.thunix.net.conf
|
|
dest: /etc/apache2/sites-available/git.thunix.net.conf
|
|
|
|
- name: Deploy apache2 site conf for lists.thunix.net.conf
|
|
copy:
|
|
src: ../files/etc/apache2/sites-available/lists.thunix.net.conf
|
|
dest: /etc/apache2/sites-available/lists.thunix.net.conf |