From 6b7f63effbdf31d93c277426822f67e55f3679d7 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 9 Oct 2021 00:15:14 -0400 Subject: [PATCH] irc: Add soju (irc bouncer) config soju is an important part of our setup since it enables us to chat while the other is offline.. I suppose we could use email, but it's nice to keep it all in IRC! --- Makefile | 3 ++- home/_soju/soju.cfg | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 home/_soju/soju.cfg diff --git a/Makefile b/Makefile index 44c1e89..60a3569 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,8 @@ FILES = /etc/httpd.conf \ /usr/local/bin/newrepo \ /usr/local/man/man1/newrepo.1 \ /usr/local/bin/wggen \ - /usr/local/man/man8/wggen.8 + /usr/local/man/man8/wggen.8 \ + /home/_soju/soju.cfg .PHONY: pull pull: diff --git a/home/_soju/soju.cfg b/home/_soju/soju.cfg new file mode 100644 index 0000000..bf370ad --- /dev/null +++ b/home/_soju/soju.cfg @@ -0,0 +1,7 @@ +http-origin irc.garbash.com +listen irc+insecure://10.6.6.1:6677 +listen ircs://irc.garbash.com:6699 +listen wss://irc.garbash.com:8080 +tls /etc/ssl/uacme/garbash.com/cert.pem /etc/ssl/uacme/private/garbash.com/key.pem +db sqlite3 /home/_soju/soju.db +log fs /home/_soju/logs -- libgit2 1.1.1