mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-22 04:07:00 -04:00
- enable - qbit - prowlarr - use proxyWebsockets - use reccomended proxy settings - fix docker compose file name
20 lines
356 B
Nix
20 lines
356 B
Nix
|
|
{ ... }:
|
|
{
|
|
services = {
|
|
nginx = {
|
|
virtualHosts = {
|
|
"prowlarr.sadan.zip" = {
|
|
forceSSL = true;
|
|
useACMEHost = "sadan.zip";
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://localhost:9696";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|