// nsa server example config module.exports = { // web interface, listening on socket, (--web on command line) web: "unix:/tmp/nsa-server.sock?mode=0777&status=true", // web interface, http server, (--web on command line) web: "http://127.0.0.1:30826/?status=true", // listening interfaces, (--listen on command line) listen: [ "udp4:127.0.0.1:30826", "udp6:[::1]:30826" ], // webhooks for slack or mattermost, user@ and #channel optional webhook: [ "https://user@hooks.slack.com/services/...?register,active,inactive,reset,remove#channel" ], // show debug messages, (-v on command line) debug: true };