manual: Element: Fix misleading base_url.

Judging from `"${pkgs.element-web}/config.sample.json"`,
this needs be a URL starting with `https://`; without it one gets:

    Your Element is misconfigured

    Invalid base_url for m.homeserver
This commit is contained in:
Niklas Hambüchen 2021-01-18 04:35:29 +01:00
parent e1340190a9
commit b954e0a12f

View File

@ -206,7 +206,7 @@ Success!
<link linkend="opt-services.nginx.virtualHosts._name_.root">root</link> = pkgs.element-web.override {
conf = {
default_server_config."m.homeserver" = {
"base_url" = "${config.networking.domain}";
"base_url" = "https://${fqdn}";
"server_name" = "${fqdn}";
};
};