btsync: Default to no login/password for the Web UI
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
f21d619558
commit
b553d11616
|
@ -164,6 +164,7 @@ in
|
||||||
httpLogin = mkOption {
|
httpLogin = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
example = "allyourbase";
|
example = "allyourbase";
|
||||||
|
default = "";
|
||||||
description = ''
|
description = ''
|
||||||
HTTP web login username.
|
HTTP web login username.
|
||||||
'';
|
'';
|
||||||
|
@ -172,6 +173,7 @@ in
|
||||||
httpPass = mkOption {
|
httpPass = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
example = "arebelongtous";
|
example = "arebelongtous";
|
||||||
|
default = "";
|
||||||
description = ''
|
description = ''
|
||||||
HTTP web login password.
|
HTTP web login password.
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in New Issue