Merge pull request #21505 from tg-x/mpd-listen

mpd: listen on 127.0.0.1 by default
This commit is contained in:
Jörg Thalheim 2017-01-01 16:06:17 +01:00 committed by GitHub
commit 05f2f8e1fd

View file

@ -83,11 +83,11 @@ in {
listenAddress = mkOption {
type = types.str;
default = "any";
default = "127.0.0.1";
example = "any";
description = ''
This setting sets the address for the daemon to listen on. Careful attention
should be paid if this is assigned to anything other then the default, any.
This setting can deny access to control of the daemon.
The address for the daemon to listen on.
Use <literal>any</literal> to listen on all addresses.
'';
};