nixos-dotfiles

nixos-dotfiles

https://git.tonybtw.com/nixos-dotfiles.git git://git.tonybtw.com/nixos-dotfiles.git

Added nginx server, and public secrets

Commit
466db431fbb9b7caa3bf282759c99f5b1f201462
Parent
d1e9f69
Author
tonybanters <tonyoutoften@gmail.com>
Date
2026-01-27 07:38:31

Diff

diff --git a/server/znc.nix b/server/znc.nix
index 9886819..a7367a6 100644
--- a/server/znc.nix
+++ b/server/znc.nix
@@ -8,10 +8,16 @@
     config = {
       SSLCertFile = "/var/lib/acme/znc.tonybtw.com/full.pem";
       LoadModule = [ "webadmin" "adminlog" ];
-      Listener.l = {
+      Listener.irc = {
         Port = 6697;
         SSL = true;
       };
+      Listener.web = {
+        Port = 6680;
+        SSL = false;
+        Web = true;
+        IRC = false;
+      };
       User.tony = {
         Admin = true;
         Nick = "tonybtw";