Zeit passiert
This commit is contained in:
26
matrix.nix
Normal file
26
matrix.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
services.matrix-synapse = {
|
||||
enable = true;
|
||||
settings = {
|
||||
server_name = "chat.mtgmonkey.net";
|
||||
settings.public_baseurl = "https://chat.mtgmonkey.net";
|
||||
settings.listeners = [
|
||||
{
|
||||
port = 8765;
|
||||
bind_addresses = ["::1"];
|
||||
type = "http";
|
||||
tls = "false";
|
||||
x_forwarded = "true";
|
||||
resources = [
|
||||
{
|
||||
names = [
|
||||
"client"
|
||||
];
|
||||
compress = true;
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user