mist updates

This commit is contained in:
insects 2024-09-03 22:50:30 +02:00
parent 189fcafde9
commit 41a9e31d06
3 changed files with 18 additions and 4 deletions

View file

@ -1,5 +1,5 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
halloy
konversation
];
}

View file

@ -10,6 +10,8 @@
unzip
openssl
autoconf
pkg-config
bun
# haskell stuff
haskell.compiler.ghc910

View file

@ -118,12 +118,13 @@
topiclen = 390;
};
network = {
name = "testnetwork";
name = "linacastellane";
};
server = {
casemapping = "permissive";
check-ident = false;
enforce-utf = true;
enforce-utf8 = true;
forward-confirm-hostnames = false;
ip-cloaking = {
enabled = false;
@ -134,10 +135,13 @@
};
listeners = {
":6667" = { };
"127.0.0.1:8067" = {
websocket = true;
};
};
lookup-hostnames = false;
max-sendq = "1M";
name = "example.com";
name = "chat.lina.cool";
relaymsg = {
enabled = false;
};
@ -184,12 +188,20 @@
email = "shadows@with.al";
virtualHosts = {
"lina.cool" = {
"owncast.lina.cool" = {
extraConfig = ''
encode gzip
reverse_proxy 127.0.0.1:8001
'';
};
"irc.lina.cool" = {
extraConfig = ''
handle /websocket {
reverse_proxy 127.0.0.1:8067
}
'';
};
};
};