diff options
| author | Seth Flynn <[email protected]> | 2025-02-08 14:10:33 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-02-08 15:17:18 -0500 |
| commit | 9db83aab18d17eebeea667938ba3a49b2207451e (patch) | |
| tree | 23915b055f5bf3766a7716b5ba219cc85da46ebb /systems/atlas | |
| parent | 0790e72af536821ab862ccef2ae2038dd9cef33a (diff) | |
lib: drop
I don't really need these nginx functions
Diffstat (limited to 'systems/atlas')
| -rw-r--r-- | systems/atlas/nginx.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/systems/atlas/nginx.nix b/systems/atlas/nginx.nix index bdd3cc3..57c2b0f 100644 --- a/systems/atlas/nginx.nix +++ b/systems/atlas/nginx.nix @@ -1,12 +1,12 @@ -{ config, inputs, ... }: -let - inherit (inputs.self.lib.nginx) mkProxy toVHosts; -in +{ config, ... }: + { services.nginx = { - virtualHosts = toVHosts config.networking.domain { - miniflux = { - locations = mkProxy "/" "7000"; + virtualHosts = { + "miniflux.getchoo.com" = { + locations."/" = { + proxyPass = "http://${config.services.miniflux.config.LISTEN_ADDR}"; + }; }; }; }; |
