aboutsummaryrefslogtreecommitdiffstats
path: root/roles/httpd/tasks
diff options
context:
space:
mode:
authorbinary <me@rgoncalves.se>2020-12-07 12:29:07 +0100
committerbinary <me@rgoncalves.se>2020-12-07 12:29:07 +0100
commit8168119817fb5952095f8757ad0d6f74a556b75d (patch)
tree4b4d705b62e67a6aed0566fb5b5dedc965ff992d /roles/httpd/tasks
parentaa76b9a63e63cd2b88143390cf2c5fb63af61e06 (diff)
downloadinfrastructure-8168119817fb5952095f8757ad0d6f74a556b75d.tar.gz
Dynamic httpd configuration via include
Diffstat (limited to 'roles/httpd/tasks')
-rw-r--r--roles/httpd/tasks/main.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/roles/httpd/tasks/main.yml b/roles/httpd/tasks/main.yml
new file mode 100644
index 0000000..4abf95a
--- /dev/null
+++ b/roles/httpd/tasks/main.yml
@@ -0,0 +1,34 @@
+
+# dns ~~ roles/dns/tasks/main.yml
+# ensure host is using unified dns
+
+---
+
+- name: ensure httpd.d directory exists
+ file:
+ path: /etc/httpd.d
+ state: directory
+ owner: "{{ user_root }}"
+ group: "{{ group_root }}"
+ mode: 0644
+
+- name: retrieve all configuration files
+ find:
+ path: /etc/httpd.d
+ patterns: "*.conf"
+ register: configurations
+
+- name: generate httpd configuration
+ template:
+ src: httpd.conf.j2
+ dest: /etc/httpd.conf
+ owner: "{{ user_root }}"
+ group: "{{ group_root }}"
+ mode: 0644
+
+- name: enable and restart httpd
+ service:
+ name: httpd
+ state: restarted
+ enabled: true
+
remember that computers suck.