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"; + }; + }; +}