diff options
| author | Seth Flynn <[email protected]> | 2025-02-08 15:01:40 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-02-08 15:17:18 -0500 |
| commit | 9436184424fde2307ed0d6fb39eeab4126104715 (patch) | |
| tree | 7147a47a7b049dc0e22fd87237fb4b9224521181 /systems/atlas | |
| parent | a30dd450fe10ed6c8bad652ee16a50005bd3c63a (diff) | |
atlas: use unix socket for miniflux
Diffstat (limited to 'systems/atlas')
| -rw-r--r-- | systems/atlas/miniflux.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/systems/atlas/miniflux.nix b/systems/atlas/miniflux.nix index a83c4cd..884cf7a 100644 --- a/systems/atlas/miniflux.nix +++ b/systems/atlas/miniflux.nix @@ -9,7 +9,7 @@ adminCredentialsFile = config.age.secrets.miniflux.path; config = { BASE_URL = "https://miniflux.${config.networking.domain}"; - LISTEN_ADDR = "localhost:7000"; + LISTEN_ADDR = "/run/miniflux"; }; }; @@ -17,7 +17,7 @@ virtualHosts = { "miniflux.getchoo.com" = { locations."/" = { - proxyPass = "http://${config.services.miniflux.config.LISTEN_ADDR}"; + proxyPass = "http://unix:${config.services.miniflux.config.LISTEN_ADDR}"; }; }; }; |
