diff --git a/hosts/architect/libreddit.nix b/hosts/architect/libreddit.nix index 7d5572c..7e153ce 100644 --- a/hosts/architect/libreddit.nix +++ b/hosts/architect/libreddit.nix @@ -3,7 +3,8 @@ let domain = "reddit.giugl.io"; network = import ./network.nix; -in { +in +{ services = { libreddit = { enable = true; @@ -13,7 +14,7 @@ in { nginx.virtualHosts.${domain} = { forceSSL = true; enableACME = true; - locations."/" = { proxyPass = "http://localhost:9090"; }; + locations."/" = { proxyPass = "http://127.0.0.1:9090"; }; }; };