From 61c05b35ebea09eb9aef59f4aac4a706001f7ec6 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Sat, 8 Feb 2025 20:44:49 -0500 Subject: nixos/nginx: actually act as a mixin This doesn't require disabling anything. It only changes the defaults --- systems/atlas/miniflux.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'systems/atlas/miniflux.nix') diff --git a/systems/atlas/miniflux.nix b/systems/atlas/miniflux.nix index 6d3f8ca..179e512 100644 --- a/systems/atlas/miniflux.nix +++ b/systems/atlas/miniflux.nix @@ -17,12 +17,13 @@ }; }; - nginx = { - virtualHosts = { - "miniflux.getchoo.com" = { - locations."/" = { - proxyPass = "http://unix:${lib.head config.systemd.sockets.miniflux.listenStreams}"; - }; + nginx.virtualHosts = { + "miniflux.getchoo.com" = { + enableACME = false; + forceSSL = false; + + locations."/" = { + proxyPass = "http://unix:${lib.head config.systemd.sockets.miniflux.listenStreams}"; }; }; }; -- cgit v1.2.3