add franklincce and docker on a trial basis

This commit is contained in:
stupidcomputer 2024-06-23 14:08:44 -05:00
parent aa91852de0
commit 774f9ecfb6
1 changed files with 12 additions and 0 deletions

View File

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