2024-12-14 20:19:42 +00:00
|
|
|
{ config, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
services.audiobookshelf = {
|
|
|
|
enable = true;
|
|
|
|
|
2024-12-15 23:13:11 +00:00
|
|
|
host = "audiobookshelf.davies.home";
|
2024-12-14 20:19:42 +00:00
|
|
|
port = 4001;
|
|
|
|
};
|
|
|
|
|
|
|
|
services.nginx = {
|
|
|
|
enable = true;
|
|
|
|
|
2024-12-15 23:13:11 +00:00
|
|
|
virtualHosts."audiobookshelf.davies.home" = {
|
2024-12-14 20:19:42 +00:00
|
|
|
locations."/" = {
|
|
|
|
proxyPass = "http://localhost:${toString config.services.audiobookshelf.port}/";
|
|
|
|
proxyWebsockets = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|