15 lines
440 B
Nix
15 lines
440 B
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
domain = "matrix-admin.home.feal.no";
|
|
# backend = "http://127.0.0.1:8008";
|
|
backend = "http://unix:/run/matrix-synapse/matrix-synapse.sock";
|
|
synapse-admin = pkgs.callPackage ./adminPkg.nix { };
|
|
in {
|
|
services.nginx.virtualHosts."${domain}" = {
|
|
locations."/".root = "${synapse-admin}";
|
|
locations."/_synapse".proxyPass = "${backend}";
|
|
locations."/_matrix".proxyPass = "${backend}";
|
|
};
|
|
}
|
|
|