mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-09 05:53:07 -04:00
20 lines
352 B
Nix
20 lines
352 B
Nix
{ ... }:
|
|
{
|
|
services = {
|
|
nginx = {
|
|
virtualHosts = {
|
|
"qbit.sadan.zip" = {
|
|
forceSSL = true;
|
|
useACMEHost = "sadan.zip";
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://localhost:3456";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|