Skip to content

Commit 256a667

Browse files
authored
Merge pull request #3733 from NginxProxyManager/develop
v2.11.2
2 parents aec3020 + 79cd0c5 commit 256a667

File tree

16 files changed

+264
-141
lines changed

16 files changed

+264
-141
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.11.1
1+
2.11.2

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<p align="center">
22
<img src="https://nginxproxymanager.com/github.png">
33
<br><br>
4-
<img src="https://img.shields.io/badge/version-2.11.1-green.svg?style=for-the-badge">
4+
<img src="https://img.shields.io/badge/version-2.11.2-green.svg?style=for-the-badge">
55
<a href="https://hub.docker.com/repository/docker/jc21/nginx-proxy-manager">
66
<img src="https://img.shields.io/docker/stars/jc21/nginx-proxy-manager.svg?style=for-the-badge">
77
</a>
@@ -19,7 +19,7 @@ running at home or otherwise, including free SSL, without having to know too muc
1919

2020
## Project Goal
2121

22-
I created this project to fill a personal need to provide users with a easy way to accomplish reverse
22+
I created this project to fill a personal need to provide users with an easy way to accomplish reverse
2323
proxying hosts with SSL termination and it had to be so easy that a monkey could do it. This goal hasn't changed.
2424
While there might be advanced options they are optional and the project should be as simple as possible
2525
so that the barrier for entry here is low.
@@ -59,7 +59,7 @@ I won't go in to too much detail here but here are the basics for someone new to
5959
version: '3.8'
6060
services:
6161
app:
62-
image: 'jc21/nginx-proxy-manager:latest'
62+
image: 'docker.io/jc21/nginx-proxy-manager:latest'
6363
restart: unless-stopped
6464
ports:
6565
- '80:80'

backend/internal/access-list.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,6 @@ const internalAccessList = {
204204
});
205205
}
206206
})
207-
.then(internalNginx.reload)
208207
.then(() => {
209208
// Add to audit log
210209
return internalAuditLog.add(access, {
@@ -227,7 +226,7 @@ const internalAccessList = {
227226
if (row.proxy_host_count) {
228227
return internalNginx.bulkGenerateConfigs('proxy_host', row.proxy_hosts);
229228
}
230-
})
229+
}).then(internalNginx.reload)
231230
.then(() => {
232231
return internalAccessList.maskItems(row);
233232
});

backend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"bcrypt": "^5.0.0",
1111
"body-parser": "^1.19.0",
1212
"compression": "^1.7.4",
13-
"express": "^4.17.3",
13+
"express": "^4.19.2",
1414
"express-fileupload": "^1.1.9",
1515
"gravatar": "^1.8.0",
1616
"json-schema-ref-parser": "^8.0.0",

backend/schema/definitions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
"description": "Domain Names separated by a comma",
173173
"example": "*.jc21.com,blog.jc21.com",
174174
"type": "array",
175-
"maxItems": 30,
175+
"maxItems": 100,
176176
"uniqueItems": true,
177177
"items": {
178178
"type": "string",

backend/templates/_location.conf

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
{% include "_hsts_map.conf" %}
2-
31
location {{ path }} {
42
proxy_set_header Host $host;
53
proxy_set_header X-Forwarded-Scheme $scheme;

0 commit comments

Comments
 (0)