Changed name of session module to webinput_session so it does not clash with Fody's session module.
Rewrite using hug in the backend and bootstrap-vue for the Frontend.
The parameter destination_pipeline_queue
is expected on the top level, not anymore in the intelmq
array.
Previously:
"intelmq": {
"destination_pipeline_queue": "test",
"destination_pipeline_db": 2,
"destination_pipeline_host": "127.0.0.1",
"destination_pipeline_port": 6379
},
Now:
"intelmq": {
...
},
"destination_pipeline_queue": "test",
The reason is that now all the parameters in the intelmq
array are used like in intelmq itself and destination_pipeline_queue
is intelmq-webinput-csv specific.
The configuration of the destination pipeline has been changed and extended.
The configuration must include this section:
"intelmq": {
"destination_pipeline_queue": "test",
"destination_pipeline_db": 2,
"destination_pipeline_host": "127.0.0.1",
"destination_pipeline_password": "foobared",
"destination_pipeline_port": 6379
},
instead of a single destination_pipeline
entry. All parameters valid for IntelMQ itself can be used here.