Move httpd stuff to tasks

This commit is contained in:
Stefan Haun 2020-11-24 18:30:46 +01:00
parent 0c78a4f72d
commit 8d19bc3fa3
2 changed files with 19 additions and 33 deletions

View file

@ -1,33 +0,0 @@
---
- hosts: tau
become: true
vars:
- server_admin: "admin@netz39.de"
tasks:
- name: Update and clean package cache
apt:
update_cache: true
cache_valid_time: 3600
autoclean: true
- name: Ensure Apache2 and modules are installed and up to date
apt:
name:
- apache2
state: latest
- name: Ensure mod_rewrite is enabled
apache2_module:
name: rewrite
state: present
- name: Setup proxy site testredmine.netz39.de
include_role:
name: setup-http-site-proxy
vars:
site_name: testredmine.netz39.de
proxy_port: 9004

19
tasks/httpd.yml Normal file
View file

@ -0,0 +1,19 @@
---
- name: Ensure Apache2 and modules are installed and up to date
apt:
name:
- apache2
state: latest
- name: Ensure mod_rewrite is enabled
apache2_module:
name: rewrite
state: present
- name: Setup proxy site testredmine.netz39.de
include_role:
name: setup-http-site-proxy
vars:
site_name: testredmine.netz39.de
proxy_port: 9004