-
Notifications
You must be signed in to change notification settings - Fork 192
/
config.js
21 lines (19 loc) · 1.01 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"use strict";
const path = require('path');
module.exports = {
isDebug : false, // 是否为调试模式
secretKey : 'video-2018', // 验证码session
pageSize : 5, // 每页显示内容数量
uploadDir : path.join(__dirname, 'www', 'uploads'), // 文件上传的主目录
avatarDir : path.join(__dirname, 'www', 'uploads', 'avatar'), // 用户的图像目录
movieDir : path.join(__dirname, 'www', 'uploads', 'movie'),
movieurl : 'http://vip.iqiyi.com/hot.html?cid=1', // 电影地址,
parseUrl : 'http://www.82190555.com/video.php?url=',
movielist : [] , // 存储了用户获取的电影列表信息
userlist : 0,
host : 'localhost',
port: 80,
database : 'video',
user : 'root',
password : '123456'
}