add aur subdomain
All checks were successful
/ deploy (push) Successful in 53s

This commit is contained in:
toufic ar 2026-02-10 19:26:51 +02:00
parent d0eba574f3
commit 413f7dd102
Signed by: toufic ar
SSH key fingerprint: SHA256:/NaO5I1nG3gYKzrzSiTYIdRyaIYxDWfr1U+d+yfJ/4k
2 changed files with 10 additions and 0 deletions

9
config/http/aur.nix Normal file
View file

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

View file

@ -4,6 +4,7 @@ in {
imports = [
./captiveportal.nix
./tor-snowflake.nix
./aur.nix
];
networking.firewall.allowedTCPPorts = [80 443];