mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
Finished setup
This commit is contained in:
parent
43354a4571
commit
cd7518be45
13 changed files with 78 additions and 44 deletions
12
nixos/tautulli.nix
Normal file
12
nixos/tautulli.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{config, ...}: {
|
||||
services = {
|
||||
tautulli = {
|
||||
enable = true;
|
||||
port = 8181;
|
||||
};
|
||||
|
||||
nginx.virtualHosts."tautulli.gensokyo.zone" = {
|
||||
locations."/".proxyPass = "http://localhost:${toString config.services.tautulli.port}";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue