18 lines
296 B
Nix
18 lines
296 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
{
|
|
services.audiobookshelf = {
|
|
enable = true;
|
|
host = "0.0.0.0";
|
|
port = "8999";
|
|
};
|
|
|
|
services.caddy.virtualHosts = {
|
|
"abs.cochrun.xyz".extraConfig = ''
|
|
reverse_proxy localhost:${services.audiobookshelf.port}
|
|
'';
|
|
};
|
|
}
|
|
|