3
0
Fork 0
forked from mirrors/nixpkgs

Document the addresses Alertmanager will listen on (#56409)

https://github.com/golang/go/issues/9334 describes how net.Listen (as used by Alertmanager):
* listens on 127.0.0.1 if the listenAddress is "localhost"
* listens on all interfaces if the listenAddress is ""
This commit is contained in:
Tom F 2019-02-27 00:59:11 +11:00 committed by xeji
parent 5781856630
commit 9f07fa719c

View file

@ -106,7 +106,8 @@ in {
type = types.str;
default = "";
description = ''
Address to listen on for the web interface and API.
Address to listen on for the web interface and API. Empty string will listen on all interfaces.
"localhost" will listen on 127.0.0.1 (but not ::1).
'';
};