Cleaning up example config

This commit is contained in:
Christopher Talib 2020-02-19 10:03:49 +01:00
parent 5bd0b8090b
commit 56e0e52bb5

View file

@ -10,37 +10,35 @@ go build
### Example configuration: ### Example configuration:
``` ```
// config.yml
certstream: certstream:
activated: true (Boolean) activated: true
pastebin: pastebin:
activated: true (Boolean) activated: true
shodan: shodan:
activated: true (Boolean) activated: true
key: String (Required) key: "SHODAN_KEY"
ports: ports:
- 80 - 80
- 443 - 443
// do not forget to set up kafka and create the topic
kafka: kafka:
activated: true (Boolean) activated: true
protocol: "tcp" (String) protocol: "tcp"
host: "localhost" (String) host: "localhost"
port: 9092 (Int) port: 9092
topic: "styx" (String) topic: "styx"
partition: 0 (Int) partition: 0
balboa: balboa:
url: String (Required) url: http://127.0.0.1:8030
activated: true (Boolean) activated: true
elasticsearch: elasticsearch:
activated: true (Boolean) activated: true
url: "http://localhost:9200" (String) url: http://localhost:9200
index: (String) index: "pastebin"
``` ```