mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-08 18:22:47 +01:00
Removes https from rest port
This commit is contained in:
@@ -1,15 +1,11 @@
|
|||||||
---
|
---
|
||||||
# Default Kibana configuration from kibana-docker.
|
# Default Kibana configuration from kibana-docker.
|
||||||
{%- set ES = salt['pillar.get']('manager:mainip', '') -%}
|
{%- set ES = salt['pillar.get']('manager:mainip', '') -%}
|
||||||
{% set FEATURES = salt['pillar.get']('elastic:features', False) %}
|
{%- set FEATURES = salt['pillar.get']('elastic:features', False) %}
|
||||||
server.name: kibana
|
server.name: kibana
|
||||||
server.host: "0"
|
server.host: "0"
|
||||||
server.basePath: /kibana
|
server.basePath: /kibana
|
||||||
{% if FEATURES %}
|
|
||||||
elasticsearch.hosts: [ "https://{{ ES }}:9200" ]
|
|
||||||
{%- else %}
|
|
||||||
elasticsearch.hosts: [ "http://{{ ES }}:9200" ]
|
elasticsearch.hosts: [ "http://{{ ES }}:9200" ]
|
||||||
{%- endif %}
|
|
||||||
#kibana.index: ".kibana"
|
#kibana.index: ".kibana"
|
||||||
#elasticsearch.username: elastic
|
#elasticsearch.username: elastic
|
||||||
#elasticsearch.password: changeme
|
#elasticsearch.password: changeme
|
||||||
|
|||||||
@@ -16,11 +16,7 @@
|
|||||||
"hostUrl": "http://{{ MANAGERIP }}:4434/"
|
"hostUrl": "http://{{ MANAGERIP }}:4434/"
|
||||||
},
|
},
|
||||||
"elastic": {
|
"elastic": {
|
||||||
{%- if FEATURES %}
|
|
||||||
"hostUrl": "https://{{ MANAGERIP }}:9200",
|
|
||||||
{%- else %}
|
|
||||||
"hostUrl": "http://{{ MANAGERIP }}:9200",
|
"hostUrl": "http://{{ MANAGERIP }}:9200",
|
||||||
{%- endif %}
|
|
||||||
"username": "",
|
"username": "",
|
||||||
"password": "",
|
"password": "",
|
||||||
"verifyCert": false
|
"verifyCert": false
|
||||||
|
|||||||
Reference in New Issue
Block a user