tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
feat: continuwuity
devins.page
3 weeks ago
a8d7791c
43da04f6
+18
2 changed files
expand all
collapse all
unified
split
hosts
bluepill
modules
matrix.nix
bluepill-proxy
modules
caddy.nix
+6
hosts/bluepill-proxy/modules/caddy.nix
···
3
3
allowedTCPPorts = [
4
4
80
5
5
443
6
6
+
6167
6
7
7
8
22
8
9
25565
···
49
50
"jellyfin.devins.page" = {
50
51
extraConfig = ''
51
52
reverse_proxy http://100.108.47.83:8096
53
53
+
'';
54
54
+
};
55
55
+
"matrix.skywardmc.org" = {
56
56
+
extraConfig = ''
57
57
+
reverse_proxy http://100.108.47.83:6167
52
58
'';
53
59
};
54
60
};
+12
hosts/bluepill/modules/matrix.nix
···
1
1
+
{...}: {
2
2
+
services.matrix-continuwuity = {
3
3
+
enable = true;
4
4
+
settings.global = {
5
5
+
allow_registration = true;
6
6
+
registration_token = "super-secret-token-i-will-change-after-register-im-devin-hi";
7
7
+
server_name = "skywardmc.org";
8
8
+
address = "0.0.0.0";
9
9
+
new_user_displayname_suffix = "";
10
10
+
};
11
11
+
};
12
12
+
}