From 9c31b6ccda95713aebabbc33a5f7d44705505671 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Tue, 14 Oct 2025 09:04:46 -0500 Subject: [PATCH] add blog domain --- hosts/linode/l001/headscale.nix | 1 + hosts/lio/flake.nix | 4 ++-- hosts/oracle/o001/nginx.nix | 8 ++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/hosts/linode/l001/headscale.nix b/hosts/linode/l001/headscale.nix index 73d12bb..98f93bb 100644 --- a/hosts/linode/l001/headscale.nix +++ b/hosts/linode/l001/headscale.nix @@ -35,6 +35,7 @@ (h001ARecord "sso") (h001ARecord "gist") (h001ARecord "git") + (h001ARecord "blog") ]; }; }; diff --git a/hosts/lio/flake.nix b/hosts/lio/flake.nix index 99fbebf..74da5a6 100644 --- a/hosts/lio/flake.nix +++ b/hosts/lio/flake.nix @@ -4,8 +4,8 @@ nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; # Use relative to get current version for testing - # common.url = "path:../../common"; - common.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles"; + common.url = "path:../../common"; + # common.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles"; ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim"; }; diff --git a/hosts/oracle/o001/nginx.nix b/hosts/oracle/o001/nginx.nix index a1ea33b..a87fa9b 100644 --- a/hosts/oracle/o001/nginx.nix +++ b/hosts/oracle/o001/nginx.nix @@ -179,6 +179,14 @@ proxyPass = "http://100.64.0.13"; }; }; + "blog.joshuabell.xyz" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyWebsockets = true; + proxyPass = "http://100.64.0.13"; + }; + }; "sso.joshuabell.xyz" = { enableACME = true; forceSSL = true;