-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
64 lines (48 loc) · 1.66 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
* site
*/
var express = require('express'),
http = require('http'),
router = require('./routes/router'),
config = require('./config/config'),
MongoStore = require('connect-mongo')(express),
util = require('./lib/util'),
path = require('path');
var fs = require('fs'),
accessLogFile = fs.createWriteStream('./log/access.log', {flags : 'a'}),
errorLogFile = fs.createWriteStream('./log/error.log', {flags : 'a'});
var app = express();
app.configure(function(){
app.set('port', config.serverPort);
app.set('views', __dirname + '/views');
app.set('view engine', 'ejs');
app.use(express.favicon());
//app.use(express.logger({stream : accessLogFile}));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(express.cookieParser());
app.use(express.session({
secret : config.sessionSecret,
store : new MongoStore({
db : config.mongoDBName
})
}));
app.use(app.router);
app.use(express.static(path.join(__dirname, 'public')));
app.use(function(err,req,res,next){
errorLogFile.write('['+ util.dateFormat(new Date(), 'yy年mm月dd日 h时m分s秒') +']' + err.stack + '\n');
express.errorHandler()(err, req, res, next);
res.send(500, err.stack);
next();
});
app.locals({
static : require('./config/localStatic')
});
});
router(app);
//app.configure('development', function(){
//app.use(express.errorHandler());
//});
http.createServer(app).listen(app.get('port'), function(){
console.log("----------------- "+config.siteName+" server is start at port " + app.get('port')+'---------------------');
});