Use a local network connection to elasticsearch (#407)

This commit is contained in:
Anael Mobilia
2023-05-09 08:48:17 -04:00
committed by GitHub
parent b15e8d0aad
commit 062d6ea821
+11
View File
@@ -126,6 +126,17 @@ server.ssl.certificate: /etc/kibana/kibana.crt
server.ssl.key: /etc/kibana/kibana.key
```
::{note}
For more security, you can configure Kibana to use a local network connexion
to elasticsearch :
```text
elasticsearch.hosts: ['https://SERVER_IP:9200']
```
=>
```text
elasticsearch.hosts: ['https://127.0.0.1:9200']
```
```bash
sudo systemctl restart kibana
```