blob: 9a028f91f4c1f74e8a2275d5a11c326230a240b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# httpd.conf ~~ /etc/httpd.conf
# managed by Ansible
types {
text/plain txt pgp pub
text/html html htm
text/css css
image/svg+xml svg
image/jpeg jpeg jpg
image/gif gif
image/png png
}
{% if ansible_host == global.dcontroller %}
server "default" {
listen on localhost port 8888
location * {
block return 302 "https://\$HTTP_HOST\$REQUEST_URI"
}
}
{% endif %}
{% for file in configurations.files %}
include "{{ file.path }}"
{% endfor %}
|