summaryrefslogtreecommitdiffstats
path: root/machines/jormungand
diff options
context:
space:
mode:
authorDominique Martinet @ jormungand <asmadeus@codewreck.org>2020-10-01 14:51:42 +0200
committerDominique Martinet @ jormungand <asmadeus@codewreck.org>2020-10-01 14:51:42 +0200
commitca37da39dc71295beda370e6dc9b071addc9d3fd (patch)
treea814cb5d76ef5ee0ab0ea6ec7eb6919974bda934 /machines/jormungand
parentb3bd83b8a02b29bf6bacb64aea916890f907312e (diff)
jormungand: add miniflux
Diffstat (limited to 'machines/jormungand')
-rw-r--r--machines/jormungand/configuration.nix1
-rw-r--r--machines/jormungand/nginx.nix10
2 files changed, 10 insertions, 1 deletions
diff --git a/machines/jormungand/configuration.nix b/machines/jormungand/configuration.nix
index 0794d96..6fb1e2f 100644
--- a/machines/jormungand/configuration.nix
+++ b/machines/jormungand/configuration.nix
@@ -7,6 +7,7 @@
./network.nix
../../profiles/ashuffle.nix
../../profiles/common.nix
+ ../../profiles/miniflux.nix
../../profiles/users.nix
../../profiles/vaderetro.nix
../../profiles/zramswap.nix
diff --git a/machines/jormungand/nginx.nix b/machines/jormungand/nginx.nix
index bdec053..87cd154 100644
--- a/machines/jormungand/nginx.nix
+++ b/machines/jormungand/nginx.nix
@@ -205,7 +205,7 @@ in {
forceSSL = true;
enableACME = true;
locations."/mpd/" = {
- proxyPass = "http://127.0.0.1:8080";
+ proxyPass = "http://127.0.0.1:8080/";
# /var/spool/nginx/mpd.htpasswd has been populated manually
# until proper secrets get managed...
extraConfig = ''
@@ -223,6 +223,14 @@ in {
};
};
+ "miniflux.codewreck.org" = {
+ forceSSL = true;
+ enableACME = true;
+ locations."/" = {
+ proxyPass = "http://127.0.0.1:8081/";
+ };
+ };
+
"matrix.codewreck.org" = {
forceSSL = true;
enableACME = true;