Also set up http to redirect to the correct taiga host

This commit is contained in:
Kevin Fenzi 2016-07-14 18:36:50 +00:00
parent e2e8e25f81
commit 3467759440
2 changed files with 2 additions and 2 deletions

View file

@ -187,7 +187,7 @@
### DONE with taiga-front
### FINALLY, nginx to serve/proxy it all
- copy: src=taiga-http.nginx dest=/etc/nginx/conf.d/taiga-http.conf
- template: src=taiga-http.nginx dest=/etc/nginx/conf.d/taiga-http.conf
mode=0644 owner=nginx group=nginx
notify: restart nginx
tags: taiga

View file

@ -6,5 +6,5 @@ server {
client_max_body_size 50M;
charset utf-8;
return 302 https://taiga.fedorainfracloud.org$request_uri;
return 302 https://{{ inventory_hostname }}$request_uri;
}