nodegame-openshift
Version:
Prepares a nodeGame instance to run on the openshift cloud.
31 lines (22 loc) • 585 B
JavaScript
/**
* # Channels definition file for Ultimatum Game
* Copyright(c) 2015 Stefano Balietti
* MIT Licensed
*
* Configurations options for channel.
*
* http://www.nodegame.org
* ---
*/
module.exports = {
// alias: 'u1',
playerServer: 'ultimatum',
adminServer: 'ultimatum/admin',
verbosity: 100,
// If TRUE, players can invoke GET commands on admins.
getFromAdmins: true,
// Unauthorized clients will be redirected here.
// (defaults: "/pages/accessdenied.htm")
accessDeniedUrl: '/ultimatum/unauth.htm',
enableReconnections: true
};