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
+8 -1
View File
@@ -29,9 +29,16 @@ in
ports = [ "${homepage}:80" ]; ports = [ "${homepage}:80" ];
}; };
}; };
greg.proxies."thehellings.com" = { greg.proxies = {
"thehellings.com" = {
target = "http://${homepage}/"; target = "http://${homepage}/";
ssl = true; ssl = true;
genAliases = false; 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 = { virtualisation.podman = {
enable = true; enable = true;
dockerCompat = true; dockerCompat = true;