From 1375bb26fc40e6fb8d3477b65e99acb30e784c09 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Thu, 19 Jun 2025 23:53:49 -0500 Subject: [PATCH] Allow doubles on linode --- hosts/linode/nginx.nix | 15 +++++++++++---- hosts/linode/podman.nix | 6 +++++- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/hosts/linode/nginx.nix b/hosts/linode/nginx.nix index b64db56..e0a933c 100644 --- a/hosts/linode/nginx.nix +++ b/hosts/linode/nginx.nix @@ -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; + }; }; } diff --git a/hosts/linode/podman.nix b/hosts/linode/podman.nix index 99b3b29..ef0b20f 100644 --- a/hosts/linode/podman.nix +++ b/hosts/linode/podman.nix @@ -1,6 +1,10 @@ -{ ... }: +{ pkgs, ... }: { + environment.systemPackages = with pkgs; [ + podman-compose + ]; + virtualisation.podman = { enable = true; dockerCompat = true;