adonis/config/http/aur.nix
toufic ar 413f7dd102
All checks were successful
/ deploy (push) Successful in 53s
add aur subdomain
2026-02-10 19:26:51 +02:00

9 lines
211 B
Nix

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