mirror of
https://github.com/Noratrieb/vps.git
synced 2026-03-14 21:26:08 +01:00
update and matrix
This commit is contained in:
parent
d392369473
commit
f2b1f2bc51
6 changed files with 50 additions and 3 deletions
36
nix/apps/matrix/default.nix
Normal file
36
nix/apps/matrix/default.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ pkgs, ... }: {
|
||||
services.matrix-continuwuity = {
|
||||
enable = true;
|
||||
settings = {
|
||||
global = {
|
||||
server_name = "noratrieb.dev";
|
||||
allow_registration = false;
|
||||
allow_encryption = true;
|
||||
allow_federation = true;
|
||||
trusted_servers = [ "matrix.org" ];
|
||||
well_known = {
|
||||
server = "matrix.noratrieb.dev:443";
|
||||
client = "https://matrix.noratrieb.dev";
|
||||
support_page = "https://noratrieb.dev";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
environment.systemPackages = [ pkgs.matrix-continuwuity ];
|
||||
services.caddy.virtualHosts."matrix.noratrieb.dev" = {
|
||||
extraConfig = ''
|
||||
encode zstd gzip
|
||||
|
||||
reverse_proxy * http://localhost:6167
|
||||
'';
|
||||
};
|
||||
services.caddy.virtualHosts."matrix.noratrieb.dev:8448" = {
|
||||
extraConfig = ''
|
||||
encode zstd gzip
|
||||
|
||||
reverse_proxy * http://localhost:6167
|
||||
'';
|
||||
};
|
||||
networking.firewall.allowedTCPPorts = [ 8448 ];
|
||||
networking.firewall.interfaces.wg0.allowedTCPPorts = [ 6167 ];
|
||||
}
|
||||
|
|
@ -12,6 +12,12 @@
|
|||
logFormat = "";
|
||||
extraConfig = ''
|
||||
encode zstd gzip
|
||||
|
||||
reverse_proxy /.well-known/matrix/* https://matrix.noratrieb.dev {
|
||||
header_up Host matrix.noratrieb.dev
|
||||
}
|
||||
|
||||
|
||||
header -Last-Modified
|
||||
|
||||
header /blog/css/* Cache-Control "max-age=31540000, immutable"
|
||||
|
|
|
|||
|
|
@ -205,6 +205,9 @@
|
|||
./modules/caddy
|
||||
./modules/garage
|
||||
./modules/snowflake-proxy
|
||||
|
||||
# apps
|
||||
./apps/matrix
|
||||
];
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ let
|
|||
"github.com/noratrieb-mirrors/certmagic-s3@v1.1.3"
|
||||
"github.com/sagikazarmark/caddy-fs-s3@v0.10.0"
|
||||
];
|
||||
hash = "sha256-onWUF2Ecd+LFprqY52U1AEvKhBIwKmI6eibeK03LpWM=";
|
||||
hash = "sha256-aZnF6dMCOfQufDhABS4ggfB0gkhDVYpdn2f60oqqKI8=";
|
||||
};
|
||||
in
|
||||
{
|
||||
|
|
|
|||
|
|
@ -63,6 +63,8 @@ let
|
|||
|
||||
garage = combine [ vps1 vps2 vps3 vps4 ];
|
||||
|
||||
matrix = vps2;
|
||||
|
||||
# --- apps
|
||||
docker = vps1;
|
||||
hugo-chat = vps1 // {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"commit": "ac62194c3917d5f474c1a844b6fd6da2db95077d"
|
||||
},
|
||||
"nixos-25.11": {
|
||||
"lastUpdated": "2026-01-31T13:55:04.922Z",
|
||||
"commit": "fa83fd837f3098e3e678e6cf017b2b36102c7211"
|
||||
"lastUpdated": "2026-02-14T15:07:37.351Z",
|
||||
"commit": "6c5e707c6b5339359a9a9e215c5e66d6d802fd7a"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue