Finalised initial server configuration

This commit is contained in:
Craige McWhirter 2020-03-30 13:37:09 +10:00
parent fe5bd1d840
commit 08f8ad9816
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

View file

@ -9,7 +9,7 @@
matrix-synapse = {
enable = true; # Enable the synapse server
server_name = "mcwhirter.io"; # Server's public domain name
public_baseurl = "https://mcwhirter.io:443/"; # Matrix target URL
public_baseurl = "https://synapse.mcwhirter.io:443/"; # Matrix target URL
web_client = true; # Whether to serve a web client
create_local_database = true; # Whether to create a local database
enable_registration = true; # Toggle user registration
@ -28,8 +28,11 @@
type = "http";
x_forwarded = true;
} ];
tls_certificate_path = "/var/lib/acme/mcwhirter.io/fullchain.pem";
tls_private_key_path = "/var/lib/acme/mcwhirter.io/key.pem";
tls_certificate_path = "/var/lib/acme/synapse.mcwhirter.io/fullchain.pem";
tls_private_key_path = "/var/lib/acme/synapse.mcwhirter.io/key.pem";
extraConfig = ''
max_upload_size: "100M"
'';
};
nginx = {
@ -39,13 +42,9 @@
recommendedGzipSettings = true;
recommendedProxySettings = true;
virtualHosts = {
"mcwhirter.io" = {
"synapse.mcwhirter.io" = {
forceSSL = true;
enableACME = true;
serverAliases = [
"chat.mcwhirter.io"
];
root = pkgs.riot-web; # Install RIOT web in the nginx root
locations = {
"/_matrix" = {
proxyPass = "https://[::1]:8008";
@ -54,7 +53,7 @@
let
# use 443 instead of the default 8448 port to unite
# the client-server and server-server port for simplicity
server = { "m.server" = "mcwhirter.io:443"; };
server = { "m.server" = "synapse.mcwhirter.io:443"; };
in ''
add_header Content-Type application/json;
return 200 '${builtins.toJSON server}';
@ -62,7 +61,7 @@
"= /.well-known/matrix/client".extraConfig =
let
client = {
"m.homeserver" = { "base_url" = "https://mcwhirter.io"; };
"m.homeserver" = { "base_url" = "https://synapse.mcwhirter.io"; };
"m.identity_server" = { "base_url" = "https://vector.im"; };
};
# ACAO required to allow riot-web on any URL to request this json file
@ -73,12 +72,30 @@
'';
};
};
"chat.mcwhirter.io" = {
forceSSL = true;
enableACME = true;
serverAliases = [
"chat.${config.networking.domain}"
];
root = pkgs.riot-web; # Install RIOT web in the nginx root
};
};
};
postgresql = {
enable = true;
};
};
security.acme.certs = {
"mcwhirter.io" = {
"chat.mcwhirter.io" = {
group = "matrix-synapse";
allowKeysForGroup = true;
postRun = "systemctl reload nginx.service";
email = "acme@mcwhirter.io";
};
"synapse.mcwhirter.io" = {
group = "matrix-synapse";
allowKeysForGroup = true;
postRun = "systemctl reload nginx.service; systemctl restart matrix-synapse.service";