1

Services/Nginx: Update to v2.12.6

This commit is contained in:
2025-07-11 19:57:37 +02:00
parent 2da56f34aa
commit d37dd3aeb4

View File

@ -3,9 +3,12 @@
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.nginx-proxy-manager = {
image = "jc21/nginx-proxy-manager:latest";
}: let
nginxVersion = "2.12.6";
in {
virtualisation.oci-containers.containers = {
nginx-proxy-manager = {
image = "jc21/nginx-proxy-manager:${nginxVersion}";
autoStart = true;
login = {
@ -40,4 +43,5 @@
"--net=behind-nginx"
];
};
};
}