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 a514c944bd
2 changed files with 13 additions and 0 deletions

View File

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

View File

@ -0,0 +1,12 @@
{ lib, config, pkgs, ... }:
{
virtualisation.docker.enable = true;
services.nginx.virtualHosts."franklincce.beepboop.systems" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:1337";
};
};
}