add franklincce and docker on a trial basis

This commit is contained in:
stupidcomputer 2024-06-23 14:08:44 -05:00 committed by rndusr
parent aa91852de0
commit 8c4b2d4032
2 changed files with 13 additions and 0 deletions

View File

@ -15,6 +15,7 @@
./rss2email.nix
./fail2ban.nix
./nginx.nix
./franklincce.nix
];
# nix optimization

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