mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
50 lines
1.8 KiB
JavaScript
50 lines
1.8 KiB
JavaScript
/**
|
|
* Copyright 2013 IBM Corp.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
module.exports = {
|
|
uiPort: 1880,
|
|
mqttReconnectTime: 15000,
|
|
serialReconnectTime: 15000,
|
|
debugMaxLength: 1000,
|
|
|
|
// You can protect the user interface with a userid and password by using the following property
|
|
// the password must be an md5 hash eg.. 5f4dcc3b5aa765d61d8327deb882cf99 ('password')
|
|
//httpAuth: {user:"user",pass:"5f4dcc3b5aa765d61d8327deb882cf99"},
|
|
|
|
// By default, the Node-RED UI is available at http://localhost:1880/
|
|
// The following property can be used to specifiy a different root path.
|
|
//httpRoot: '/admin',
|
|
|
|
// The following property can be used to enable HTTPS
|
|
// See http://nodejs.org/api/https.html#https_https_createserver_options_requestlistener
|
|
// for details on its contents.
|
|
//https: {
|
|
// key: fs.readFileSync('privatekey.pem'),
|
|
// cert: fs.readFileSync('certificate.pem')
|
|
//},
|
|
|
|
// Anything in this hash is globally available to all functions.
|
|
// It is accessed as context.global.
|
|
// eg:
|
|
// functionGlobalContext: { os:require('os') }
|
|
// can be accessed in a function block as:
|
|
// context.global.os
|
|
|
|
functionGlobalContext: { }
|
|
//functionGlobalContext: { bonescript:require('bonescript') }
|
|
//functionGlobalContext: { arduino:require('duino') }
|
|
|
|
}
|