[PR #1667] [MERGED] v2.9.13 #3467

Closed
opened 2026-02-26 08:30:45 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/NginxProxyManager/nginx-proxy-manager/pull/1667
Author: @jc21
Created: 12/22/2021
Status: Merged
Merged: 12/22/2021
Merged by: @jc21

Base: masterHead: develop


📝 Commits (10+)

  • c55476b Adds buttons to test availability of server from public internet
  • c86a1a5 Fixes formatting
  • 9efe6cf Minor fixes
  • 38ec0f9 Adds logs to backend when testing http challenge
  • ee89ded Adds migration to regenerate default host
  • 1f879f6 Reverts back to proxy_pass without variables
  • ddd5389 Skip migration if setting does not exist
  • cb09104 Merge pull request #1578 from jc21/undo-switch-to-variables
  • d45f39a Merge pull request #1538 from jc21/adds-http-challenge-test
  • b394eb8 Hack for python binary in newer node images

📊 Changes

18 files changed (+353 additions, -19 deletions)

View changed files

📝 .version (+1 -1)
📝 Jenkinsfile (+1 -1)
📝 README.md (+1 -1)
📝 backend/internal/certificate.js (+90 -0)
backend/migrations/20211108145214_regenerate_default_host.js (+50 -0)
📝 backend/routes/api/nginx/certificates.js (+26 -1)
📝 backend/schema/endpoints/certificates.json (+11 -0)
📝 backend/templates/_location.conf (+1 -7)
📝 docker/rootfs/etc/nginx/conf.d/include/proxy.conf (+1 -2)
📝 frontend/js/app/api.js (+10 -0)
📝 frontend/js/app/controller.js (+13 -0)
📝 frontend/js/app/nginx/certificates/form.ejs (+8 -0)
📝 frontend/js/app/nginx/certificates/form.js (+26 -1)
📝 frontend/js/app/nginx/certificates/list/item.ejs (+3 -0)
📝 frontend/js/app/nginx/certificates/list/item.js (+11 -5)
frontend/js/app/nginx/certificates/test.ejs (+15 -0)
frontend/js/app/nginx/certificates/test.js (+75 -0)
📝 frontend/js/i18n/messages.json (+10 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/NginxProxyManager/nginx-proxy-manager/pull/1667 **Author:** [@jc21](https://github.com/jc21) **Created:** 12/22/2021 **Status:** ✅ Merged **Merged:** 12/22/2021 **Merged by:** [@jc21](https://github.com/jc21) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`c55476b`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/c55476b196242e6e75dc1ec0c708761b3c6404d6) Adds buttons to test availability of server from public internet - [`c86a1a5`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/c86a1a50bd7bd03296eec3ce347884b912f08599) Fixes formatting - [`9efe6cf`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/9efe6cfb39e5a8a151343bb22130ffa33707a03f) Minor fixes - [`38ec0f9`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/38ec0f9f957b34bd856879faa1422da2a0772c66) Adds logs to backend when testing http challenge - [`ee89ded`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/ee89dedd0fd971351959a41acceabc997cf6df7f) Adds migration to regenerate default host - [`1f879f6`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/1f879f67a9bed8f5eb444d00ad47c353b8a75db8) Reverts back to proxy_pass without variables - [`ddd5389`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/ddd538944af91697d220d0b1a06d82137ba7c933) Skip migration if setting does not exist - [`cb09104`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/cb091040a82e446bd4be00f2bcfaf6823cacb09f) Merge pull request #1578 from jc21/undo-switch-to-variables - [`d45f39a`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/d45f39aae3f7ab202e5bd8323352159f13280c5a) Merge pull request #1538 from jc21/adds-http-challenge-test - [`b394eb8`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/b394eb8e553588ea239d9a8a2be17889b8df66a9) Hack for python binary in newer node images ### 📊 Changes **18 files changed** (+353 additions, -19 deletions) <details> <summary>View changed files</summary> 📝 `.version` (+1 -1) 📝 `Jenkinsfile` (+1 -1) 📝 `README.md` (+1 -1) 📝 `backend/internal/certificate.js` (+90 -0) ➕ `backend/migrations/20211108145214_regenerate_default_host.js` (+50 -0) 📝 `backend/routes/api/nginx/certificates.js` (+26 -1) 📝 `backend/schema/endpoints/certificates.json` (+11 -0) 📝 `backend/templates/_location.conf` (+1 -7) 📝 `docker/rootfs/etc/nginx/conf.d/include/proxy.conf` (+1 -2) 📝 `frontend/js/app/api.js` (+10 -0) 📝 `frontend/js/app/controller.js` (+13 -0) 📝 `frontend/js/app/nginx/certificates/form.ejs` (+8 -0) 📝 `frontend/js/app/nginx/certificates/form.js` (+26 -1) 📝 `frontend/js/app/nginx/certificates/list/item.ejs` (+3 -0) 📝 `frontend/js/app/nginx/certificates/list/item.js` (+11 -5) ➕ `frontend/js/app/nginx/certificates/test.ejs` (+15 -0) ➕ `frontend/js/app/nginx/certificates/test.js` (+75 -0) 📝 `frontend/js/i18n/messages.json` (+10 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 08:30:45 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-proxy-manager-NginxProxyManager#3467
No description provided.