Hello Community,
I need your help.
I have setup a fresh taiga installation with docker and it works with http on port 9000.
I have generated SSL Certificates from my internal PKI but I don’t understand how to configure my taiga instance to work with https.
My docker-compose.yml file:
Blockquote
taiga-front:
image: taigaio/taiga-front:latest
environment:
TAIGA_URL: “${TAIGA_SCHEME}://${TAIGA_DOMAIN}”
TAIGA_WEBSOCKETS_URL: “${WEBSOCKETS_SCHEME}://${TAIGA_DOMAIN}”
TAIGA_SUBPATH: “${SUBPATH}”
# …your customizations go here
networks:
- taiga
# volumes:
# - ./conf.json:/usr/share/nginx/html/conf.json
taiga-gateway:
image: nginx:1.19-alpine
ports:
- “9000:80”
volumes:
- ./taiga-gateway/taiga.conf:/etc/nginx/conf.d/default.conf
- taiga-static-data:/taiga/static
- taiga-media-data:/taiga/media
networks:
- taiga
depends_on:
- taiga-front
- taiga-back
- taiga-events
Blockquote
My .env file:
Blockquote
TAIGA_SCHEME=http # serve Taiga using “http” or “https” (secured) connection
TAIGA_DOMAIN=taiga.internal.test.com:9000 # Taiga’s base URL
SUBPATH=“” # it’ll be appended to the TAIGA_DOMAIN (use either “” or a “/subpath”)
WEBSOCKETS_SCHEME=ws # events connection protocol (use either “ws” or “wss”)
Blockquote
My nginx.conf file:
Blockquote
server {
# listen 80 default_server;
server_name taiga.internal.test.com;
client_max_body_size 100M;
charset utf-8;
Blockquote
When I configure https, the web site is not responding (even in http). I have spend some hours on Google, test some configuration but nothing is working !
Thanks for your help.