Add jellyfin host
This commit is contained in:
parent
8a16dd0af2
commit
693c6da88a
9 changed files with 141 additions and 0 deletions
12
hosts/web-public-2/virtualHosts/acme-challenge.nix
Normal file
12
hosts/web-public-2/virtualHosts/acme-challenge.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.nginx.virtualHosts."jellyfin.grzb.de" = {
|
||||
listen = [{
|
||||
addr = "0.0.0.0";
|
||||
port = 80;
|
||||
}];
|
||||
locations."^~ /.well-known/acme-challenge/" = {
|
||||
proxyPass = "http://jellyfin.vs.grzb.de:80";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./acme-challenge.nix
|
||||
./anisync.grzb.de.nix
|
||||
./birdsite.nekover.se.nix
|
||||
./element.nekover.se.nix
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue