mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-27 06:28:20 -04:00
add radarr
This commit is contained in:
parent
2f2b116890
commit
de910497fa
3 changed files with 46 additions and 0 deletions
20
common/users/docker/radarr/nginx.nix
Normal file
20
common/users/docker/radarr/nginx.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
|
||||
|
||||
{ ... }:
|
||||
{
|
||||
services = {
|
||||
nginx = {
|
||||
virtualHosts = {
|
||||
"radarr.sadan.zip" = {
|
||||
forceSSL = true;
|
||||
useACMEHost = "sadan.zip";
|
||||
locations = {
|
||||
"/" = {
|
||||
proxyPass = "http://localhost:9696";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue