summaryrefslogtreecommitdiffstats
path: root/vagrant_support/apache.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant_support/apache.yml')
-rw-r--r--vagrant_support/apache.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/vagrant_support/apache.yml b/vagrant_support/apache.yml
new file mode 100644
index 000000000..e4399f612
--- /dev/null
+++ b/vagrant_support/apache.yml
@@ -0,0 +1,12 @@
+---
+- name: configure httpd
+ template:
+ src: apache.j2
+ dest: /etc/httpd/conf.d/bugzilla.conf
+ mode: 0644
+
+- name: enable httpd
+ service: name=httpd enabled=yes
+
+- name: restart httpd
+ service: name=httpd state=restarted