This commit is contained in:
Sakooooo 2025-01-02 22:50:37 +04:00
parent b3a7e4b126
commit e10d5fde20
Signed by: sako
GPG key ID: FE52FD65B76E4751

View file

@ -120,11 +120,9 @@ in {
}; };
services.nginx.virtualHosts."qbittorrent.sako.box" = { services.nginx.virtualHosts."qbittorrent.sako.box" = {
forceSSL = true; forceSSL = true;
locations."/" = { sslCertificate = "/srv/secrets/certs/sako.box.pem";
proxyPass = "http://localhost:${toString cfg.port}"; sslCertificateKey = "/srv/secrets/certs/sako.box-key.pem";
sslCertificate = "/srv/secrets/certs/sako.box.pem"; locations."/" = { proxyPass = "http://localhost:${toString cfg.port}"; };
sslCertificateKey = "/srv/secrets/certs/sako.box-key.pem";
};
}; };
}; };