add franklincce and docker on a trial basis
This commit is contained in:
parent
aa91852de0
commit
8c4b2d4032
|
@ -15,6 +15,7 @@
|
||||||
./rss2email.nix
|
./rss2email.nix
|
||||||
./fail2ban.nix
|
./fail2ban.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
./franklincce.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# nix optimization
|
# nix optimization
|
||||||
|
|
|
@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue