tautulli
This commit is contained in:
parent
5f1a76f7a2
commit
f90e260b29
|
@ -38,6 +38,7 @@
|
||||||
../../profiles/http/services/rss-bridge.nix
|
../../profiles/http/services/rss-bridge.nix
|
||||||
#../../profiles/http/services/jellyfin.nix
|
#../../profiles/http/services/jellyfin.nix
|
||||||
../../profiles/http/services/plex.nix
|
../../profiles/http/services/plex.nix
|
||||||
|
../../profiles/http/services/tautulli.nix
|
||||||
../../profiles/http/services/libreddit.nix
|
../../profiles/http/services/libreddit.nix
|
||||||
#../../profiles/http/services/mattermost.nix
|
#../../profiles/http/services/mattermost.nix
|
||||||
#../../profiles/http/services/navidrome.nix
|
#../../profiles/http/services/navidrome.nix
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
{ config, pkgs, lib, inputs, mkDomain, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
# plex admin web ui
|
||||||
|
# previously known as plexpy
|
||||||
|
|
||||||
|
services.tautulli.enable = true;
|
||||||
|
services.tautulli.port = 8474;
|
||||||
|
|
||||||
|
services.nginx.virtualHosts.${mkDomain "tautulli"} = lib.mkIf config.services.tautulli.enable {
|
||||||
|
forceSSL = true; # addSSL = true;
|
||||||
|
enableACME = true; #useACMEHost = acmeDomain;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:${toString config.services.tautulli.port}";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue