add artboard conf file to set allowoverrides for the artboard dir

This commit is contained in:
Seth Vidal 2012-12-14 16:16:06 +00:00
parent 95df617289
commit cfabfaf30b
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,9 @@
<Directory "/var/www/html/artboard">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>

View file

@ -50,6 +50,10 @@
- name: link artboard into /var/www/html
action: file state=link src=/srv/persist/artboard path=/var/www/html/artboard
- name: add artboard apache conf
action: copy src=$files/artboard/artboard.conf dest=/etc/httpd/conf.d/artboard.conf backup=True
notify: restart httpd
- name: startup apache
action: service name=httpd state=started