mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-19 18:57:02 -04:00
add sonarr
This commit is contained in:
parent
6197814098
commit
73a7da10ef
3 changed files with 47 additions and 0 deletions
18
common/users/docker/sonarr/nginx.nix
Normal file
18
common/users/docker/sonarr/nginx.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ ... }:
|
||||
{
|
||||
services = {
|
||||
nginx = {
|
||||
virtualHosts = {
|
||||
"sonarr.sadan.zip" = {
|
||||
forceSSL = true;
|
||||
useACMEHost = "sadan.zip";
|
||||
locations = {
|
||||
"/" = {
|
||||
proxyPass = "https://localhost:8989";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue