summaryrefslogtreecommitdiffstats
path: root/system/services/miniflux
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-03 16:10:04 +0200
committerSoispha <soispha@vhack.eu>2023-10-03 16:10:04 +0200
commit932c45d2eb843bac1bb2f6e64a91613fe0fa3dd2 (patch)
treeb4e88fbe024d0d25f3ae71e423990b5907911ea5 /system/services/miniflux
parentchore(version): v0.10.0 (diff)
downloadnixos-server-932c45d2eb843bac1bb2f6e64a91613fe0fa3dd2.zip
feat(system/services/miniflux): Init
Diffstat (limited to 'system/services/miniflux')
-rw-r--r--system/services/miniflux/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/system/services/miniflux/default.nix b/system/services/miniflux/default.nix
new file mode 100644
index 0000000..e42ebe2
--- /dev/null
+++ b/system/services/miniflux/default.nix
@@ -0,0 +1,19 @@
+{config, ...}: {
+ services.miniflux = {
+ enable = true;
+ config = {
+ LISTEN_ADDR = "127.0.0.1:5892";
+ };
+ adminCredentialsFile = config.secrets.age.minifluxAdmin.path;
+ };
+
+ services.nginx = {
+ enable = true;
+ virtualHosts."rss.vhack.eu" = {
+ locations."/".proxyPass = "http://${config.services.miniflux.config.LISTEN_ADDR}";
+
+ enableACME = true;
+ forceSSL = true;
+ };
+ };
+}