Open Greeniezz opened 4 months ago
I think you should put your certificate and key in the ./caddy_data directory, that will be visible as /data for caddy, and where the Caddyfile is created dynamically. And then, in the Caddyfile creation script, instead of "tls internal", you should use "tls
Firstly thank you guys for your work and everyone on the issue forum Sorry for being so lame :(
I don't find where to tell caddy to use my own domain certificate. Here my docker-compose.yml :
version: "3.9"
services: backend: container_name: backend image: ghcr.io/intuitem/ciso-assistant-community/backend:latest restart: always environment:
./db:/code/db
frontend: container_name: frontend environment:
HOST_HEADER=x-forwarded-host
image: ghcr.io/intuitem/ciso-assistant-community/frontend:latest depends_on:
backend
caddy: container_name: caddy image: caddy:2.7.6 environment:
Thank you very much for your help !