Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG DOCKER_IMAGE_VERSION=

# Define software versions.
ARG OPENRESTY_VERSION=1.27.1.1
ARG NGINX_PROXY_MANAGER_VERSION=2.12.3
ARG NGINX_PROXY_MANAGER_VERSION=2.12.6
ARG NGINX_HTTP_GEOIP2_MODULE_VERSION=3.3
ARG LIBMAXMINDDB_VERSION=1.5.0
ARG BCRYPT_TOOL_VERSION=1.1.2
Expand Down
4 changes: 4 additions & 0 deletions appdefs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ app:
- `CONTAINER_NAME` is the name of the running container.
- `USER_EMAIL` is the email of the address to reset the password.
changelog:
- version: 25.07.0
date: 2025-09-09
changes:
- 'Updated Nginx Proxy Manager to version 2.12.6.'
- version: 25.06.1
date: 2025-06-25
changes:
Expand Down
10 changes: 5 additions & 5 deletions src/nginx-proxy-manager/pip-install.patch
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
--- a/backend/lib/certbot.js
+++ b/backend/lib/certbot.js
@@ -63,7 +63,7 @@
plugin.version = plugin.version.replace(/{{certbot-version}}/g, CERTBOT_VERSION_REPLACEMENT);
plugin.dependencies = plugin.dependencies.replace(/{{certbot-version}}/g, CERTBOT_VERSION_REPLACEMENT);
@@ -70,7 +70,7 @@
env = Object.assign(env, plugin.env);
}

- const cmd = '. /opt/certbot/bin/activate && pip install --no-cache-dir ' + plugin.dependencies + ' ' + plugin.package_name + plugin.version + ' ' + ' && deactivate';
- const cmd = `. /opt/certbot/bin/activate && pip install --no-cache-dir ${plugin.dependencies} ${plugin.package_name}${plugin.version} && deactivate`;
+ const cmd = 'pip install --no-cache-dir ' + plugin.dependencies + ' ' + plugin.package_name + plugin.version;
return utils.exec(cmd)
return utils.exec(cmd, {env})
.then((result) => {
logger.complete(`Installed ${pluginKey}`);
2 changes: 1 addition & 1 deletion src/nginx-proxy-manager/remove-certbot-dns-oci.patch
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Because of the Oracle Cloud Infrastructure DNS plugin dependencies, installing
it causes certbot to be downgraded, which then break any execution of certbot.
--- a/global/certbot-dns-plugins.json
+++ b/global/certbot-dns-plugins.json
@@ -437,14 +437,6 @@
@@ -439,14 +439,6 @@
"credentials": "dns_nsone_api_key = MDAwMDAwMDAwMDAwMDAw",
"full_plugin_name": "dns-nsone"
},
Expand Down