File tree Expand file tree Collapse file tree 6 files changed +18
-4
lines changed
frontend/js/app/dashboard Expand file tree Collapse file tree 6 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -22,5 +22,7 @@ server {
22
22
}
23
23
{% endif %}
24
24
25
+ # Custom
26
+ include /data/nginx/custom/server_dead[.]conf;
25
27
}
26
28
{% endif %}
Original file line number Diff line number Diff line change @@ -181,6 +181,7 @@ You can add your custom configuration snippet files at `/data/nginx/custom` as f
181
181
- `/data/nginx/custom/server_stream.conf` : Included at the end of every stream server block
182
182
- `/data/nginx/custom/server_stream_tcp.conf` : Included at the end of every TCP stream server block
183
183
- `/data/nginx/custom/server_stream_udp.conf` : Included at the end of every UDP stream server block
184
+ - `/data/nginx/custom/server_dead.conf` : Included at the end of every 404 server block
184
185
185
186
Every file is optional.
186
187
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Known integrations:
12
12
- [ HomeAssistant Hass.io plugin] ( https://github.com/hassio-addons/addon-nginx-proxy-manager )
13
13
- [ UnRaid / Synology] ( https://github.com/jlesage/docker-nginx-proxy-manager )
14
14
- [ Proxmox Scripts] ( https://github.com/ej52/proxmox-scripts/tree/main/apps/nginx-proxy-manager )
15
+ - [ Proxmox VE Helper-Scripts] ( https://community-scripts.github.io/ProxmoxVE/scripts?id=nginxproxymanager )
15
16
- [ nginxproxymanagerGraf] ( https://github.com/ma-karai/nginxproxymanagerGraf )
16
17
17
18
Original file line number Diff line number Diff line change @@ -873,9 +873,9 @@ mitt@^3.0.1:
873
873
integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==
874
874
875
875
nanoid@^3.3.7 :
876
- version "3.3.7 "
877
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7 .tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8 "
878
- integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g ==
876
+ version "3.3.8 "
877
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8 .tgz#b1be3030bee36aaff18bacb375e5cce521684baf "
878
+ integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w ==
879
879
880
880
881
881
version "0.4.3"
Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ module.exports = Mn.View.extend({
50
50
onRender : function ( ) {
51
51
let view = this ;
52
52
53
- Api . Reports . getHostStats ( )
53
+ if ( typeof view . stats . hosts === 'undefined' ) {
54
+ Api . Reports . getHostStats ( )
54
55
. then ( response => {
55
56
if ( ! view . isDestroyed ( ) ) {
56
57
view . stats . hosts = response ;
@@ -60,6 +61,7 @@ module.exports = Mn.View.extend({
60
61
. catch ( err => {
61
62
console . log ( err ) ;
62
63
} ) ;
64
+ }
63
65
} ,
64
66
65
67
/**
Original file line number Diff line number Diff line change 247
247
"credentials" : " dns_hetzner_api_token = 0123456789abcdef0123456789abcdef" ,
248
248
"full_plugin_name" : " dns-hetzner"
249
249
},
250
+ "hostingnl" : {
251
+ "name" : " Hosting.nl" ,
252
+ "package_name" : " certbot-dns-hostingnl" ,
253
+ "version" : " ~=0.1.5" ,
254
+ "dependencies" : " " ,
255
+ "credentials" : " dns_hostingnl_api_key = 0123456789abcdef0123456789abcdef" ,
256
+ "full_plugin_name" : " dns-hostingnl"
257
+ },
250
258
"hover" : {
251
259
"name" : " Hover" ,
252
260
"package_name" : " certbot-dns-hover" ,
You can’t perform that action at this time.
0 commit comments