adonis/config/http/tor-snowflake.nix
toufic ar 03464d2756
All checks were successful
/ deploy (push) Successful in 31s
increase snowflake capacity, add tor subdomain
2026-02-05 20:52:49 +02:00

9 lines
211 B
Nix

{config, ...}: let
torDomain = "tor.${config.customOps.domain.fqdn}";
in {
services.nginx.virtualHosts.${torDomain} = {
root = "/var/www/${torDomain}";
forceSSL = true;
enableACME = true;
};
}