Allow doubles on linode

This commit is contained in:
Greg Hellings
2025-06-19 23:53:49 -05:00
parent d85012e1b3
commit 1375bb26fc
2 changed files with 16 additions and 5 deletions
+11 -4
View File
@@ -29,9 +29,16 @@ in
ports = [ "${homepage}:80" ];
};
};
greg.proxies."thehellings.com" = {
target = "http://${homepage}/";
ssl = true;
genAliases = false;
greg.proxies = {
"thehellings.com" = {
target = "http://${homepage}/";
ssl = true;
genAliases = false;
};
"doubles.thehellings.com" = {
target = "http://localhost:8081";
ssl = true;
genAliases = false;
};
};
}
+5 -1
View File
@@ -1,6 +1,10 @@
{ ... }:
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
podman-compose
];
virtualisation.podman = {
enable = true;
dockerCompat = true;