mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fixes from testing
I set up a NGINX instance to test this and found I'd missed some bits. Still can't find a way to test this easily from a nodejs unit test
This commit is contained in:
parent
8c95067ec4
commit
0b52cd8b31
@ -68,7 +68,7 @@
|
|||||||
<input style="width: calc(100% - 170px);" type="text" id="node-config-input-servername" data-i18n="[placeholder]tls.placeholder.servername">
|
<input style="width: calc(100% - 170px);" type="text" id="node-config-input-servername" data-i18n="[placeholder]tls.placeholder.servername">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label style="width: 120px;" for="node-config-input-alpnprotocol"><i class=""></i> <span data-i18n="tls.label.alpnprotocol"></span></label>
|
<label style="width: 120px;" for="node-config-input-alpnprotocol"><i class="fa fa-cogs"></i> <span data-i18n="tls.label.alpnprotocol"></span></label>
|
||||||
<input style="width: calc(100% - 170px);" type="text" id="node-config-input-alpnprotocol" data-i18n="[placeholder]tls.placeholder.alpnprotocol">
|
<input style="width: calc(100% - 170px);" type="text" id="node-config-input-alpnprotocol" data-i18n="[placeholder]tls.placeholder.alpnprotocol">
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
|
@ -26,6 +26,7 @@ module.exports = function(RED) {
|
|||||||
var keyPath = n.key.trim();
|
var keyPath = n.key.trim();
|
||||||
var caPath = n.ca.trim();
|
var caPath = n.ca.trim();
|
||||||
this.servername = (n.servername||"").trim();
|
this.servername = (n.servername||"").trim();
|
||||||
|
this.alpnprotocol = (n.alpnprotocol||"").trim();
|
||||||
|
|
||||||
if ((certPath.length > 0) || (keyPath.length > 0) || (caPath.length > 0)) {
|
if ((certPath.length > 0) || (keyPath.length > 0) || (caPath.length > 0)) {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user