Compare commits

..

No commits in common. "f52ed3375bcc22b12ca78a196998a40238de0587" and "2679e4b938f6b529f81bf7b3f4bebf81166a8ece" have entirely different histories.

5 changed files with 13 additions and 6 deletions

8
flake.lock generated
View file

@ -5199,11 +5199,11 @@
"stylix": "stylix_6"
},
"locked": {
"lastModified": 1778016348,
"narHash": "sha256-C8PtC95r1KJync8qDEroIont1VT8tiwsjonYjwGLhbY=",
"lastModified": 1777909424,
"narHash": "sha256-rGvpa9MD+N+ZY6C6unfjlyyJi+etI5E9I3ucUSnAmfQ=",
"ref": "release-25.11",
"rev": "8ad8b1f633f6c3875032a0ead0e87255dff4ab3c",
"revCount": 57,
"rev": "4683cb1136b22f059a242389a96e47ff061f3d6b",
"revCount": 52,
"type": "git",
"url": "https://git.sid.ovh/sid/synix.git"
},

View file

@ -18,6 +18,7 @@
./nginx.nix
./open-webui-oci.nix
./print-server.nix
./rss-bridge.nix
./rsshub-oci.nix
./vaultwarden.nix

View file

@ -8,7 +8,7 @@
reverseProxy = {
enable = true;
subdomain = constants.services.rss-bridge.subdomain;
forceSSL = true;
forceSSL = false;
};
};
}

View file

@ -17,7 +17,6 @@
./netdata.nix
./nginx.nix
./radicale.nix
./rss-bridge.nix
./step-ca.nix
];
}

View file

@ -77,6 +77,13 @@ in
error_log /var/log/nginx/open-webui-error.log debug;
'';
};
virtualHosts."${constants.services.rss-bridge.fqdn}" = {
enableACME = ssl;
forceSSL = ssl;
locations."/" = {
proxyPass = "http://${constants.hosts.rx4.ip}";
};
};
virtualHosts."${constants.services.rsshub-oci.fqdn}" = mkVirtualHost {
inherit ssl;
address = constants.hosts.rx4.ip;