nixos-selfhost/audiobooks.nix

18 lines
298 B
Nix
Raw Permalink Normal View History

2025-01-14 15:17:47 +01:00
{...}: let
2024-03-01 22:15:55 +01:00
domain = "books.sondell.org";
2025-01-14 15:17:47 +01:00
in {
#
2024-03-01 22:15:55 +01:00
services.audiobookshelf = {
enable = true;
port = 8000;
};
services.nginx.virtualHosts.${domain} = {
2024-03-24 22:37:16 +01:00
default = true;
2024-03-01 22:15:55 +01:00
locations."/" = {
proxyPass = "http://localhost:8000/";
proxyWebsockets = true;
};
};
}