nixos-dotfiles
nixos-dotfiles
https://git.tonybtw.com/nixos-dotfiles.git
git://git.tonybtw.com/nixos-dotfiles.git
Added nginx server, and public secrets
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";