summaryrefslogtreecommitdiff
path: root/systems/atlas
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-14 01:49:41 -0400
committerseth <[email protected]>2024-05-14 01:49:41 -0400
commiteb85cec3976a7f5223df7375d92db6094222a587 (patch)
tree8c762ec1934cb0547b72e7fc5bd61cefcf4a2f9c /systems/atlas
parentf8de8603357654f341a9e120abdc3d2e2df5fbe6 (diff)
tree-wide: take down mydadleft.me
Diffstat (limited to 'systems/atlas')
-rw-r--r--systems/atlas/nginx.nix14
1 files changed, 4 insertions, 10 deletions
diff --git a/systems/atlas/nginx.nix b/systems/atlas/nginx.nix
index d453b15..9fe0b38 100644
--- a/systems/atlas/nginx.nix
+++ b/systems/atlas/nginx.nix
@@ -4,18 +4,12 @@
...
}: let
inherit (inputs.self.lib.nginx) mkProxy toVHosts;
-
- miniflux = {
- locations = mkProxy "/" "7000";
- };
in {
services.nginx = {
- virtualHosts =
- toVHosts config.networking.domain {
- inherit miniflux;
- }
- // toVHosts "mydadleft.me" {
- inherit miniflux;
+ virtualHosts = toVHosts config.networking.domain {
+ miniflux = {
+ locations = mkProxy "/" "7000";
};
+ };
};
}