From 035a13d11e5df30b6ba50004b40ed9ff0451ca46 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Tue, 16 Jun 2015 17:32:54 +0000 Subject: [PATCH] Add nginx to the taiga group so it gets rights to read all the static stuff. --- roles/taiga/tasks/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/taiga/tasks/main.yml b/roles/taiga/tasks/main.yml index fe47514350..b268ceb288 100644 --- a/roles/taiga/tasks/main.yml +++ b/roles/taiga/tasks/main.yml @@ -171,11 +171,16 @@ ### DONE with taiga-front ### FINALLY, nginx to serve/proxy it all + - copy: src=taiga.nginx dest=/etc/nginx/conf.d/taiga mode=0644 owner=nginx group=nginx notify: restart nginx tags: taiga +# Add nginx to the taiga group so it gets rights to read all our static stuff +- user: name=nginx groups=taiga append=yes + tags: taiga + - file: dest=/etc/nginx/site-enabled/default state=absent notify: restart nginx tags: taiga