Merge branch 'pr/1756' into develop

Conflicts:
	src/node/handler/SocketIORouter.js
This commit is contained in:
Marcel Klehr 2013-09-29 16:45:12 +02:00
commit 7b17bd58ae
4 changed files with 22 additions and 3 deletions

View file

@ -75,6 +75,10 @@ exports.restartServer = function () {
next();
});
if(settings.trustProxy){
app.enable('trust proxy');
}
app.configure(function() {
hooks.callAll("expressConfigure", {"app": app});
});