Provide HTTPS config for nginx
https://github.com/douglasmiranda/docker-taiga/blob/master/frontend/nginx/default.conf
https://taigaio.github.io/taiga-doc/dist/setup-production.html
In case you're interested, if you swap ngnix for caddy you get automated configuration-free TLS with LetsEncrypt. That's my plan for our deployment. Btw, great work on this setup, me like it very much wow
Great idea :D
It's a good opportunity to use caddy xD
@douglasmiranda I did try but I couldn't find a nice way to replicate multiple locations in nginx. In other words, this
found the solution (pretty neat!)
localhost {
root /taiga-front-dist-3.1.0-stable/dist
rewrite {
to {path} {path}/ /index.html
}
}
localhost/media {
root /taiga/media
}
localhost/static {
root /taiga/static
}
adjust with your paths