From 774f9ecfb691b2525b4f06a11d136899bbd8fd88 Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Sun, 23 Jun 2024 14:08:44 -0500 Subject: [PATCH] add franklincce and docker on a trial basis --- boxes/netbox/franklincce.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 boxes/netbox/franklincce.nix diff --git a/boxes/netbox/franklincce.nix b/boxes/netbox/franklincce.nix new file mode 100644 index 0000000..f27a2f9 --- /dev/null +++ b/boxes/netbox/franklincce.nix @@ -0,0 +1,12 @@ +{ lib, config, pkgs, ... }: +{ + virtualisation.docker.enable = true; + + services.nginx.virtualHosts."git.beepboop.systems" = { + forceSSL = true; + enableACME = true; + locations."/" = { + proxyPass = "http://localhost:1337"; + }; + }; +}