Hi,
i try to get drone working with a custom root ca. What i have done so far is setup DRONE_VOLUME in my compose file:
drone-server:
image: drone/drone:0.8
ports:
- 8080:8000
- 9000
restart: always
environment:
- DRONE_OPEN=true
- DRONE_HOST=https://drone-ci.example.con
- DRONE_SECRET=myveryownsecret
- DRONE_VOLUME=/etc/pki/tls/certs:/etc/ssl/certs
But that is not working. I am stil getting:
level=error msg=“cannot authenticate user. Post https://gitea.example.com/api/v1/users//tokens: x509: certificate signed by unknown authority”
Do i have to name the root certificate in a special way? How can i debug this error?