diff options
Diffstat (limited to 'roles/httpd')
-rw-r--r-- | roles/httpd/defaults/main.yml | 4 | ||||
-rw-r--r-- | roles/httpd/meta/main.yml | 3 | ||||
-rw-r--r-- | roles/httpd/tasks/main.yml | 19 | ||||
-rw-r--r-- | roles/httpd/templates/httpd.conf.j2 | 31 |
4 files changed, 57 insertions, 0 deletions
diff --git a/roles/httpd/defaults/main.yml b/roles/httpd/defaults/main.yml new file mode 100644 index 0000000..9ccd2f3 --- /dev/null +++ b/roles/httpd/defaults/main.yml @@ -0,0 +1,4 @@ +httpd_configuration_file: /etc/httpd.conf +httpd_configuration_dir: /etc/httpd.d +httpd_chroot: /var/www +httpd_use_nfs: false diff --git a/roles/httpd/meta/main.yml b/roles/httpd/meta/main.yml new file mode 100644 index 0000000..6b163d1 --- /dev/null +++ b/roles/httpd/meta/main.yml @@ -0,0 +1,3 @@ +dependencies: + - role: httpd_pre + tags: dependency diff --git a/roles/httpd/tasks/main.yml b/roles/httpd/tasks/main.yml new file mode 100644 index 0000000..a272afa --- /dev/null +++ b/roles/httpd/tasks/main.yml @@ -0,0 +1,19 @@ +- name: retrieve all configuration files + find: + path: "{{ httpd_configuration_dir }}" + patterns: "*.conf" + register: configuration_files + +- name: generate httpd configuration + template: + src: httpd.conf.j2 + dest: "{{ httpd_configuration_file }}" + owner: 0 + group: 0 + mode: 0644 + +- name: enable and restart httpd + service: + name: httpd + state: restarted + enabled: true diff --git a/roles/httpd/templates/httpd.conf.j2 b/roles/httpd/templates/httpd.conf.j2 new file mode 100644 index 0000000..6285d70 --- /dev/null +++ b/roles/httpd/templates/httpd.conf.j2 @@ -0,0 +1,31 @@ +# managed by Ansible + +types { + text/css css + text/html html htm + text/plain txt pgp pub + image/gif gif + image/jpeg jpeg jpg + image/png png + image/svg+xml svg + application/xml xml rss +} + +{% if inventory_hostname == __global_domain_controller %} +server "default" { + listen on localhost port 8888 + + location "/.well-known/acme-challenge/*" { + root "/acme" + request strip 2 + } + + location * { + block return 302 "https://$HTTP_HOST$REQUEST_URI" + } +} +{% endif %} + +{% for file in configuration_files.files %} +include "{{ file.path }}" +{% endfor %} |