rbw: fix url option examples
rbw expects a protocol for its base_url setting[1]. Otherwise fails
with `rbw unlock: failed to parse base url: relative URL without a
base`.
[1] 741a72cf0d/README.md (configuration)
This commit is contained in:
parent
1a4f12ae0b
commit
19e2f43e0b
|
@ -19,7 +19,7 @@ let
|
||||||
base_url = mkOption {
|
base_url = mkOption {
|
||||||
type = with types; nullOr str;
|
type = with types; nullOr str;
|
||||||
default = null;
|
default = null;
|
||||||
example = "bitwarden.example.com";
|
example = "https://bitwarden.example.com/";
|
||||||
description =
|
description =
|
||||||
"The base-url for a self-hosted bitwarden installation.";
|
"The base-url for a self-hosted bitwarden installation.";
|
||||||
};
|
};
|
||||||
|
@ -27,7 +27,7 @@ let
|
||||||
identity_url = mkOption {
|
identity_url = mkOption {
|
||||||
type = with types; nullOr str;
|
type = with types; nullOr str;
|
||||||
default = null;
|
default = null;
|
||||||
example = "identity.example.com";
|
example = "https://identity.example.com/";
|
||||||
description = "The identity url for your bitwarden installation.";
|
description = "The identity url for your bitwarden installation.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue