Merge pull request 'update synix input' (#56) from develop into master
All checks were successful
Deploy configs / deploy-configs (push) Successful in 26s

Reviewed-on: #56
This commit is contained in:
sid 2026-05-05 23:29:05 +02:00
commit f52ed3375b
5 changed files with 6 additions and 13 deletions

8
flake.lock generated
View file

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

View file

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

View file

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

View file

@ -77,13 +77,6 @@ in
error_log /var/log/nginx/open-webui-error.log debug; 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 { virtualHosts."${constants.services.rsshub-oci.fqdn}" = mkVirtualHost {
inherit ssl; inherit ssl;
address = constants.hosts.rx4.ip; address = constants.hosts.rx4.ip;

View file

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