-
-
Save Simonx123/99d7173db1edabe4a05c9235e32cb449 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############## APPEND TO KIBANA CONFIGURATION FILE ############ | |
cat <<EOT >> /etc/kibana/kibana.yml | |
elasticsearch.hosts: ['https://${internal_lb_ip}:9200'] | |
server.name: my-elastic-kibana | |
server.host: 0.0.0.0 | |
server.port: 8080 | |
kibana.index: .kibanana | |
logging.dest: /var/log/kibana.log | |
logging.verbose: true | |
csp.strict: true | |
elasticsearch.username: 'elastic' | |
xpack.security.encryptionKey: 'akey' | |
xpack.security.audit.enabled: true | |
xpack.encryptedSavedObjects.encryptionKey: 'akey' | |
server.ssl.keystore.path: '/etc/kibana/http.p12' | |
server.ssl.keystore.password: '' | |
elasticsearch.ssl.certificateAuthorities: ['/etc/kibana/elasticsearch-ca.pem'] | |
elasticsearch.ssl.verificationMode: 'none' | |
server.ssl.enabled: true | |
EOT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment