nix-config/hosts/sisyphe/features/multimedia/calibre-web.nix

18 lines
331 B
Nix
Raw Normal View History

2024-07-15 16:50:14 +02:00
{ config, ... }:
2024-07-15 16:27:23 +02:00
{
services.calibre-web = {
enable = true;
openFirewall = true;
2024-07-22 11:29:41 +02:00
listen.ip = "0.0.0.0";
2024-07-15 16:27:23 +02:00
options = {
enableBookUploading = true;
2024-07-22 11:04:32 +02:00
enableKepubify = true;
2024-07-15 16:27:23 +02:00
};
};
2024-10-30 17:44:54 +01:00
services.caddy.virtualHosts."http://books.hypervirtual.world".extraConfig = ''
reverse_proxy :8083
'';
2024-07-15 16:27:23 +02:00
}