adding nginx

This commit is contained in:
2025-10-06 15:30:05 -05:00
parent c0172ec665
commit bcb17336a9
3 changed files with 18 additions and 3 deletions

View File

@@ -47,6 +47,12 @@ in
#networking.firewall.allowedTCPPorts = [ 8096 ];
# reverse proxy entryo
services.nginx.virtualHosts."media.blakedheld.xyz" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8096";
};
};
};
}