From 63c07fbb554bf921ecdc212a4c4899e3ddfd0de8 Mon Sep 17 00:00:00 2001 From: nydragon Date: Thu, 6 Mar 2025 23:09:53 +0100 Subject: [PATCH] feat: add nginx redirect --- hosts/raptus/default.nix | 3 +++ hosts/raptus/forgejo/runner.nix | 2 ++ 2 files changed, 5 insertions(+) diff --git a/hosts/raptus/default.nix b/hosts/raptus/default.nix index 20d7beb..8b17958 100644 --- a/hosts/raptus/default.nix +++ b/hosts/raptus/default.nix @@ -33,6 +33,8 @@ in efiInstallAsRemovable = true; }; + virtualisation.docker.enable = true; + modules = { server.rustypaste = { enable = true; @@ -111,6 +113,7 @@ in virtualHosts = builtins.listToAttrs [ (mkVHost "rusty.ccnlc.eu" 8000 true) (mkVHost "hedgedoc.ccnlc.eu" 4739 true) + (mkVHost "dpp.ccnlc.eu" 8120 true) ]; }; diff --git a/hosts/raptus/forgejo/runner.nix b/hosts/raptus/forgejo/runner.nix index d1a6508..8b8e98b 100644 --- a/hosts/raptus/forgejo/runner.nix +++ b/hosts/raptus/forgejo/runner.nix @@ -12,6 +12,8 @@ let in { config = mkIf cfg.enable { + virtualisation.docker.autoPrune.enable = true; + services.gitea-actions-runner = { package = pkgs.forgejo-runner;