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