synapse/element: nicer code layout for the config

This commit is contained in:
stuebinm 2021-03-18 23:01:41 +01:00
parent 2c487d5505
commit 8c8f50323e
No known key found for this signature in database
GPG key ID: 8FBE8AAD32FA12B7

View file

@ -15,54 +15,70 @@
services.nginx = { services.nginx = {
enable = true; enable = true;
# only recommendedProxySettings and recommendedGzipSettings are strictly required, # only recommendedProxySettings and recommendedGzipSettings are strictly required,
# but the rest make sense as well # but the rest make sense as well (according to the broken example from the manual)
recommendedTlsSettings = true; recommendedTlsSettings = true;
recommendedOptimisation = true; recommendedOptimisation = true;
recommendedGzipSettings = true; recommendedGzipSettings = true;
recommendedProxySettings = true; recommendedProxySettings = true;
virtualHosts = { virtualHosts = {
# This host section can be placed on a different host than the rest, # This host section can be placed on a different host than the rest,
# i.e. to delegate from the host being accessible as ${config.networking.domain} # i.e. to delegate from the host on which matrix / synapse actually run.
# to another host actually running the Matrix homeserver. # This may make migration easier; in our case it's mostly added complexity.
"hacc.space" = { "hacc.space" = {
locations."= /.well-known/matrix/server".extraConfig = # see https://matrix.org/docs/spec/client_server/latest#get-well-known-matrix-client
let # for documentation on what should be returned at these endpoints.
# use 443 instead of the default 8448 port to unite locations."= /.well-known/matrix/server".extraConfig = ''
# the client-server and server-server port for simplicity add_header Content-Type application/json;
server = { "m.server" = "matrix.hacc.space:443"; }; return 200 '${builtins.toJSON { "m.server" = "matrix.hacc.space:443"; }}';
in '' '';
add_header Content-Type application/json; # this is to configure the nice default homeserver setting for our element web.
return 200 '${builtins.toJSON server}';
'';
locations."= /.well-known/matrix/client".extraConfig = locations."= /.well-known/matrix/client".extraConfig =
let let client = {
client = { "m.homeserver" = { "base_url" = "https://matrix.hacc.space"; };
"m.homeserver" = { "base_url" = "https://matrix.hacc.space"; }; "m.identity_server" = { "base_url" = "https://vector.im"; };
"m.identity_server" = { "base_url" = "https://vector.im"; }; };
}; in ''
# ACAO required to allow element-web on any URL to request this json file add_header Content-Type application/json;
in '' add_header Access-Control-Allow-Origin *;
add_header Content-Type application/json; return 200 '${builtins.toJSON client}';
add_header Access-Control-Allow-Origin *; '';
return 200 '${builtins.toJSON client}';
'';
}; };
# Reverse proxy for Matrix client-server and server-server communication
# this serves the actual matrix endpoint
"matrix.hacc.space" = { "matrix.hacc.space" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
# Or do a redirect instead of the 404, or whatever is appropriate for you. # it is not recommended to have the actual element web interface on the same domain,
# But do not put a Matrix Web client here! See the Element web section below. # cf. https://github.com/vector-im/element-web#separate-domains on this.
locations."/".extraConfig = '' locations."/".extraConfig = ''
return 404; return 404;
''; '';
# forward all Matrix API calls to the synapse Matrix homeserver
locations."/_matrix" = { locations."/_matrix" = {
proxyPass = "http://[::1]:8008"; # without a trailing / proxyPass = "http://[::1]:8008";
};
};
# the element web client for our matrix server.
"element.matrix.hacc.space" = {
enableACME = true;
forceSSL = true;
serverAliases = [
"element.hacc.space"
];
root = pkgs.element-web.override {
conf = {
# the base_url here must be identical to the one on hacc.space/.well-known above.
default_server_config."m.homeserver" = {
"base_url" = "https://matrix.hacc.space";
"server_name" = "matrix.hacc.space";
};
};
}; };
}; };
}; };
@ -71,43 +87,16 @@
services.matrix-synapse = { services.matrix-synapse = {
enable = true; enable = true;
server_name = "hacc.space"; server_name = "hacc.space";
# TODO: this is horrible, and should probably be removed once everything's running listeners = [ {
# so we won't have secrets in the nix store. port = 8008;
# bind_address = "::1";
# I used this to test that the server works at all, and I've removed it again for now. type = "http";
registration_shared_secret = ""; tls = false;
listeners = [ x_forwarded = true;
{ resources = [ {
port = 8008; names = [ "client" "federation" ];
bind_address = "::1"; compress = false;
type = "http"; } ];
tls = false; } ];
x_forwarded = true;
resources = [
{
names = [ "client" "federation" ];
compress = false;
}
];
}
];
};
services.nginx.virtualHosts."element.matrix.hacc.space" = {
enableACME = true;
forceSSL = true;
serverAliases = [
"element.hacc.space"
];
root = pkgs.element-web.override {
conf = {
default_server_config."m.homeserver" = {
"base_url" = "https://matrix.hacc.space";
"server_name" = "matrix.hacc.space";
};
};
};
#locations."= /config.element.matrix.hacc.space.json".alias = element.outPath + "/config.json";
}; };
} }