X-Git-Url: https://jasonwoof.com/gitweb/?p=peach-cgt.git;a=blobdiff_plain;f=server.coffee;h=1ce56f235f68ed6455029ad638b1b6835913c7fa;hp=f0ebddf7d92a4da934c9f781dc601199ef0a9a3e;hb=387a29e812d34804ee5f424d00d1b9f68eb2ea91;hpb=17ee6e1dba95f184fa1cdf66b4db3153b350e757 diff --git a/server.coffee b/server.coffee index f0ebddf..1ce56f2 100644 --- a/server.coffee +++ b/server.coffee @@ -14,7 +14,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -listen_port = 13850 +listen_port = process.env.app_port ? 9988 sys = require 'sys' fs = require 'fs' http = require 'http' @@ -26,7 +26,7 @@ model = require './common.coffee' games = {} max_concurrent_games = 50 -max_game_idle = 2 * 60 * 60 * 1000 # two hours (in miliseconds) +max_game_idle = 3 * 60 * 60 * 1000 # three hours (in miliseconds) # timeout function with args in convenient order timeout = (ms, func) -> setTimeout func, ms