diff --git a/hosts/architect/libreddit.nix b/hosts/architect/libreddit.nix index 55b28f6..504e6bf 100644 --- a/hosts/architect/libreddit.nix +++ b/hosts/architect/libreddit.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, ... }: +{ config, ... }: let domain = "reddit.giugl.io"; @@ -11,6 +11,9 @@ in architect.vhost.${domain} = { dnsInterfaces = [ "lan" "tailscale" ]; - locations."/".port = config.services.libreddit.port; + locations."/" = { + port = config.services.libreddit.port; + allowWAN = true; + }; }; }