Include compose files
This commit is contained in:
parent
4628820aa4
commit
a52cdd50cc
19 changed files with 667 additions and 1 deletions
16
Docker/node-red/data/settings.js
Normal file
16
Docker/node-red/data/settings.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
...
|
||||
|
||||
https: {
|
||||
key: require("fs").readFileSync('/privkey.pem'),
|
||||
cert: require("fs").readFileSync('/cert.pem')
|
||||
},
|
||||
|
||||
...
|
||||
|
||||
requireHttps: true,
|
||||
|
||||
...
|
||||
|
||||
webSocketNodeVerifyClient: function(info) {
|
||||
return (info.origin == "https://www.example.de" && info.secure == true);
|
||||
},
|
Loading…
Add table
Add a link
Reference in a new issue