mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
26 lines
702 B
Plaintext
26 lines
702 B
Plaintext
{%- set MASTERIP = salt['pillar.get']('static:masterip', '') -%}
|
|
{%- set SENSORONIKEY = salt['pillar.get']('static:sensoronikey', '') -%}
|
|
{
|
|
"logFilename": "sensoroni-server.log",
|
|
"server": {
|
|
"bindAddress": "{{ MASTERIP }}:9822",
|
|
"maxPacketCount": 5000,
|
|
"htmlDir": "html",
|
|
"modules": {
|
|
"filedatastore": {
|
|
"jobDir": "jobs"
|
|
},
|
|
"securityonion": {
|
|
"elasticsearchHost": "http://{{ MASTERIP }}:9200",
|
|
"elasticsearchUsername": "",
|
|
"elasticsearchPassword": "",
|
|
"elasticsearchVerifyCert": false
|
|
},
|
|
"statickeyauth": {
|
|
"anonymousCidr": "{{ MASTERIP }}/32",
|
|
"apiKey": "{{ SENSORONIKEY }}"
|
|
}
|
|
}
|
|
}
|
|
}
|