소스 검색

Remove the dump.rdb file from the magic-window

Matt Coles 9 년 전
부모
커밋
6e1a62959c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      index.js

+ 1 - 1
index.js

@@ -33,7 +33,7 @@ app.use(function(req, res, next) {
33 33
 app.use(bodyParser.json()); // for parsing application/json
34 34
 app.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
35 35
 app.use('/', route_manager);
36
-app.use('/source', require('magic-window')('/source', { ignore: ['config', 'redis', 'cert.pem', 'key.pem'] }))
36
+app.use('/source', require('magic-window')('/source', { ignore: ['config', 'redis', 'cert.pem', 'key.pem', 'dump.rdb'] }))
37 37
 
38 38
 app.listen(3000, function () {
39 39
   console.log('Now accepting connections on port 3000.');