summary refs log tree commit diff stats
path: root/system/services
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-13 18:20:51 +0200
committerSoispha <soispha@vhack.eu>2023-10-13 18:31:14 +0200
commit0f48f5c5fb2dd79da735f9accc9e6e81355c327a (patch)
treebcd7f3242060d3053fc7efb8ba1e971525c5dd38 /system/services
parentfix(system/services/mastodon): Correctly avoid string casts (diff)
downloadnixos-server-0f48f5c5fb2dd79da735f9accc9e6e81355c327a.tar.gz
nixos-server-0f48f5c5fb2dd79da735f9accc9e6e81355c327a.zip
fix(system/services/miniflux): Set correct subdomain, but leave alias
Diffstat (limited to 'system/services')
-rw-r--r--system/services/miniflux/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/system/services/miniflux/default.nix b/system/services/miniflux/default.nix
index 516a9b2..9a0f2bc 100644
--- a/system/services/miniflux/default.nix
+++ b/system/services/miniflux/default.nix
@@ -9,11 +9,14 @@
 
   services.nginx = {
     enable = true;
-    virtualHosts."rss.vhack.eu" = {
+    virtualHosts."miniflux.vhack.eu" = {
       locations."/".proxyPass = "http://${config.services.miniflux.config.LISTEN_ADDR}";
 
       enableACME = true;
       forceSSL = true;
+      serverAliases = [
+        "rss.vhack.eu"
+      ];
     };
   };
 }