summary refs log tree commit diff
path: root/hosts/vps
diff options
context:
space:
mode:
authortzlil <tzlils@protonmail.com>2023-04-21 15:22:47 +0300
committertzlil <tzlils@protonmail.com>2023-04-21 15:22:47 +0300
commit0598236822c8ac36f8028c89d4b79f4f6b251a72 (patch)
tree6fae8860bea46fd3a9bf432ff2d7709739df53b0 /hosts/vps
parent977e7c795ab2ca3d2a226bdbebf4d5e7b3dad96c (diff)
dont rememeber
Diffstat (limited to 'hosts/vps')
-rw-r--r--hosts/vps/cfg.nix1
-rw-r--r--hosts/vps/git.nix7
-rw-r--r--hosts/vps/website.nix12
3 files changed, 15 insertions, 5 deletions
diff --git a/hosts/vps/cfg.nix b/hosts/vps/cfg.nix
index c902c53..f780229 100644
--- a/hosts/vps/cfg.nix
+++ b/hosts/vps/cfg.nix
@@ -13,6 +13,7 @@
     ./website.nix
     ./git.nix
     ./hydrus.nix
+    ./matrix.nix
   ];
 
   config = {
diff --git a/hosts/vps/git.nix b/hosts/vps/git.nix
index 06a8af2..e334aeb 100644
--- a/hosts/vps/git.nix
+++ b/hosts/vps/git.nix
@@ -33,7 +33,7 @@
         group = "fcgiwrap";
       };
       caddy = {
-        virtualHosts."http://95.179.168.209".extraConfig = ''
+        virtualHosts."tzlil.net".extraConfig = ''
           bind 0.0.0.0
           ${config.website.defaultHeaders}
           handle_path /cgit/* {
@@ -59,12 +59,12 @@
             favicon = "/favicon.ico";
             clone-url = pkgs.lib.concatStringsSep " " [
               "http://$HTTP_HOST$SCRIPT_NAME/$CGIT_REPO_URL"
-              "ssh://git@git.example.com:$CGIT_REPO_URL"
+              "ssh://git@tzlil.net:$CGIT_REPO_URL"
             ];
             enable-log-filecount = 1;
             enable-log-linecount = 1;
             enable-git-config = 1;
-            root-title = "git.example.com";
+            root-title = "tzlil.net";
             root-desc = "Tzlil's Git Repositories";
             scan-path = "/home/git";
             about-filter = "${pkgs.cgit}/lib/cgit/filters/about-formatting.py";
@@ -75,6 +75,7 @@
                 }
               }
           }
+          }
         '';
       };
     };
diff --git a/hosts/vps/website.nix b/hosts/vps/website.nix
index 86b725a..ef057e0 100644
--- a/hosts/vps/website.nix
+++ b/hosts/vps/website.nix
@@ -38,7 +38,7 @@
     services.caddy = {
       enable = true;
       virtualHosts = {
-        "http://95.179.168.209".extraConfig = ''
+        "tzlil.net".extraConfig = ''
           bind 0.0.0.0
           handle_path / {
             try_files ${pkgs.writeText "index.txt" ''
@@ -62,7 +62,7 @@
             ????++=~:=?IIIII=~:: ~~+II77$$7$ZO8NMMMND.+:   .=7+=~ ,,:?...~II??+??I?+??IIII?I
             ??III7II+~:?II7+II?, ~,:,~7777$$$I$8DNMMNO   .~I  .Z:.,:~: ,+???+=,IIIIII??IIIII
             ???I7I:,~=:,+II+=~I??:.,,,.:77777777$ODMM8 .:+ZI. ,~,..~~ :II?==~:?II??IIIIIIIII
-            No matter where you go, everybody's connected
+            No matter where you go, everyone's connected
 
             /cgit/ for repositories
           ''} /
@@ -72,5 +72,13 @@
       };
     };
     networking.firewall.allowedTCPPorts = [80 443];
+
+    environment.persistence."/nix/persist".directories = [
+      {
+        directory = "/var/lib/caddy";
+        user = "caddy";
+        group = "caddy";
+      }
+    ];
   };
 }