This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Runtime Configurations
leopoldfreeman edited this page Apr 1, 2015
·
30 revisions
Here are the all runtime configurations of Pomelo.
This config can only be applied to master server.
- Desc: The function to auth user.
- Type: Function.
- Default value: utils.defaultAuthUser from 'pomelo-admin'.
- Desc: The function to auth server.
- Type: Function.
- Default value: utils.defaultAuthServerMaster from 'pomelo-admin'.
app.configure('production|development', 'master', function(){
app.set('masterConfig', {
authUser: function () { ... },
authServer: function () { ... }
});
});
The config affects the client of 'pomeo-rpc'. It can be applied to all servers.
- Desc: The function to auth user.
- Type: Function.
- Default value: Not set, which will be evaluated as false.
- Desc: See above. The unit is millisecond. Used when bufferMsg is true.
- Type: Number.
- Default value: 30.
app.configure('production|development', function(){
app.set('proxyConfig', {
bufferMsg: true,
interval: 20
});
});