dotfiles/common/users/docker/qbit/nginx.nix
2025-03-12 22:12:22 -04:00

20 lines
352 B
Nix

{ ... }:
{
services = {
nginx = {
virtualHosts = {
"qbit.sadan.zip" = {
forceSSL = true;
useACMEHost = "sadan.zip";
locations = {
"/" = {
proxyPass = "http://localhost:3456";
proxyWebsockets = true;
};
};
};
};
};
};
}