# Kibana Fleet shows Self Signed Certificate in Certificate Chain

**URL:** https://discuss.elastic.co/t/kibana-fleet-shows-self-signed-certificate-in-certificate-chain/297947
**Category:** Kibana
**Tags:** docker
**Created:** [February 22, 2022, 8:20pm UTC](https://discuss.elastic.co/t/kibana-fleet-shows-self-signed-certificate-in-certificate-chain/297947 "2022-02-22T20:20:22Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![SwampyFox](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/swampyfox/32/89601_2.png) [@SwampyFox](https://discuss.elastic.co/u/SwampyFox)
#### Post date: [March 1, 2022, 4:13pm UTC](https://discuss.elastic.co/t/kibana-fleet-shows-self-signed-certificate-in-certificate-chain/297947/2 "2022-03-01T16:13:17Z")

</div>

I was able to resolve this by suppling the root ca that my company uses and configuring the NODE\_EXTRA\_CA\_CERTS environment variable. For example:

```auto
docker run --name kibana \
    --net elastic \
    -v $(pwd)/npmcerts.pem:/tmp/npmcerts.pem \
    -e NODE_EXTRA_CA_CERTS=/tmp/npmcerts.pem \
    -p 5601:5601 \
    docker.elastic.co/kibana/kibana:8.0.0

```

---

_[View the full topic](https://discuss.elastic.co/t/kibana-fleet-shows-self-signed-certificate-in-certificate-chain/297947)._
