This commit is contained in:
Hadi 2024-06-20 11:31:02 +02:00
parent f761b8c66a
commit e0803c6bd5
2 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,7 @@
"jack.anotherhadi.com"
"ntfy.anotherhadi.com"
"home.anotherhadi.com"
"kuma.anotherhadi.com"
];
proxied = true;
apiTokenFile = "/etc/cloudflare/apiToken";

View File

@ -6,5 +6,9 @@
PORT = "3005";
};
};
services.nginx.virtualHosts."kuma.anotherhadi.com" = {
enableACME = true;
locations."/" = { proxyPass = "http://127.0.0.1:3005"; };
};
networking.firewall.allowedTCPPorts = [ 3005 ];
}