19 Nov 2023 |
| @solson:matrix.org left the room. | 14:36:19 |
| pbsds changed their display name from pbsds (federation borken, may not see reply) to pbsds. | 20:39:10 |
20 Nov 2023 |
| chayleaf joined the room. | 18:14:48 |
22 Nov 2023 |
| @withoutwithin:matrix.org changed their profile picture. | 03:43:25 |
24 Nov 2023 |
| @janik0:matrix.org joined the room. | 16:42:56 |
28 Nov 2023 |
chayleaf | reviews appreciated https://github.com/NixOS/nixpkgs/pull/265368 | 01:14:02 |
chayleaf | I've been using this since May in my flake and decided now's a good time to submit this when the 23.11 pressure isn't here anymore | 01:17:12 |
chayleaf | * I've been using this since May in my flake and decided now's a good time to submit this when the code is sufficiently tested/rounded out and the 23.11 pressure isn't here anymore | 01:17:45 |
1 Dec 2023 |
| moritz.hedtke set their display name to Moritz Hedtke. | 11:08:15 |
2 Dec 2023 |
Ralith | appservice-irc is broken in 23.11; see https://github.com/NixOS/nixpkgs/pull/271740 | 20:09:16 |
18 Dec 2023 |
| Alex joined the room. | 16:39:05 |
Alex | Hi! How can I use the mautrix-signal bridge? It only has a package, but no module | 16:39:28 |
philipp | You'd probably have to write your own service with systemd.services . You can proabably take inspiration from services.mautrix-whatsapp or services.mautrix-facebook . | 16:43:44 |
Alex | ok, thanks! | 16:48:27 |
Alex | I might contribute a module to nixpkgs | 16:48:33 |
@delroth:delroth.net | I have a not-very-good module here: https://github.com/delroth/infra.delroth.net/blob/master/roles/matrix-signal-bridge.nix | 17:32:52 |
@delroth:delroth.net | feel free to reuse parts of it | 17:33:01 |
@delroth:delroth.net | bugs I know about: bridging images doesn't work because I think the systemd FS sandbox on signald is setup too tight - but I haven't looked too deeply at the problem | 17:34:58 |
Victor | In reply to @graphite:tchncs.de Hi! How can I use the mautrix-signal bridge? It only has a package, but no module You should probably have a look to this : https://gitlab.com/coffeetables/nix-matrix-appservices | 17:36:18 |
Alex | for some reason, my Matrix server works locally, but not on my site | 17:41:15 |
Alex | This is my caddy config:
inputs: { pkgs, ... }: {
services.postgresql.enable = true;
services.postgresql.initialScript = pkgs.writeText "synapse-init.sql" ''
CREATE ROLE "matrix-synapse" WITH LOGIN PASSWORD 'synapse';
CREATE DATABASE "matrix-synapse" WITH OWNER "matrix-synapse"
TEMPLATE template0
LC_COLLATE = "C"
LC_CTYPE = "C";
'';
services.matrix-synapse = {
enable = true;
settings = {
server_name = "gra.phite.ro";
public_baseurl = "https://matrix.gra.phite.ro";
listeners = [
{
port = 8008;
bind_addresses = [ "::1" ];
# Caddy handles HTTPS and TLS
type = "http";
tls = false;
x_forwarded = true;
resources = [
{
names = [ "client" "federation" ];
compress = true;
}
];
}
];
};
};
}
| 17:42:21 |
Alex | and my caddyfile:
https://gra.phite.ro {
root * /home/ultra/code/html/blog
file_server
}
http://gra.phite.ro {
root * /home/ultra/code/html/blog
file_server
}
https://5.12.179.165 {
root * /home/ultra/code/html/blog
file_server
}
https://192.168.100.35 {
root * /home/ultra/code/html/blog
file_server
}
http://0.0.0.0:80 {
root * /home/ultra/code/html/blog
file_server
}
https://git.gra.phite.ro {
reverse_proxy :3000
}
https://cloud.gra.phite.ro {
reverse_proxy :3001
}
https://pwd.gra.phite.ro {
reverse_proxy :3002
}
https://matrix.gra.phite.ro {
reverse_proxy :8008
}
# https://phite.ro {
# redir https://gra.phite.ro
# }
# http://phite.ro {
# redir http://gra.phite.ro
# }
| 17:43:02 |
Alex | * for some reason, my Matrix server works on localhost, but not on my site | 17:45:54 |
Alex | * This is my caddy config:
inputs: { pkgs, ... }: {
services.postgresql.enable = true;
services.postgresql.initialScript = pkgs.writeText "synapse-init.sql" ''
CREATE ROLE "matrix-synapse" WITH LOGIN PASSWORD 'synapse';
CREATE DATABASE "matrix-synapse" WITH OWNER "matrix-synapse"
TEMPLATE template0
LC_COLLATE = "C"
LC_CTYPE = "C";
'';
services.matrix-synapse = {
enable = true;
settings = {
server_name = "gra.phite.ro";
public_baseurl = "https://matrix.gra.phite.ro";
listeners = [
{
port = 3003;
bind_addresses = [ "::1" ];
# Caddy handles HTTPS and TLS
type = "http";
tls = false;
x_forwarded = true;
resources = [
{
names = [ "client" "federation" ];
compress = true;
}
];
}
];
};
};
}
| 17:51:50 |
Alex | * and my caddyfile:
https://gra.phite.ro {
root * /home/ultra/code/html/blog
file_server
}
http://gra.phite.ro {
root * /home/ultra/code/html/blog
file_server
}
https://5.12.179.165 {
root * /home/ultra/code/html/blog
file_server
}
https://192.168.100.35 {
root * /home/ultra/code/html/blog
file_server
}
http://0.0.0.0:80 {
root * /home/ultra/code/html/blog
file_server
}
https://git.gra.phite.ro {
reverse_proxy :3000
}
https://cloud.gra.phite.ro {
reverse_proxy :3001
}
https://pwd.gra.phite.ro {
reverse_proxy :3002
}
https://matrix.gra.phite.ro {
reverse_proxy :3003
}
# https://phite.ro {
# redir https://gra.phite.ro
# }
# http://phite.ro {
# redir http://gra.phite.ro
# }
| 17:52:05 |
Alex | does anyone else use synapse with caddy? | 17:55:29 |
20 Dec 2023 |
| June changed their display name from June to June 📞 5863. | 23:32:11 |
21 Dec 2023 |
| June changed their display name from June 📞 5863 to June. | 14:14:18 |
23 Dec 2023 |
| June changed their display name from June to June 📞 5863. | 01:56:12 |
26 Dec 2023 |
| tokudan changed their display name from sugi to sugi 📞8658. | 00:55:54 |