nixos: services: remove redundant subdomains

See previous commit for the defaults.
This commit is contained in:
Bruno BELANYI 2023-12-25 19:42:20 +01:00
parent b7a4bc063f
commit 6948424b81
22 changed files with 1 additions and 30 deletions

View file

@ -120,7 +120,6 @@ in
my.services.nginx.virtualHosts = {
# Element Web app deployment
chat = {
subdomain = "chat";
root = pkgs.element-web.override {
conf = {
default_server_config = {
@ -148,16 +147,13 @@ in
};
# Dummy VHosts for port collision detection
matrix-federation = {
subdomain = "matrix-federation";
port = federationPort.private;
};
matrix-client = {
subdomain = "matrix-client";
port = clientPort.private;
};
# Sliding sync
matrix-sync = {
subdomain = "matrix-sync";
inherit (cfg.slidingSync) port;
};
};