forked from nodester/nodester
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample_config.js
44 lines (41 loc) · 1.37 KB
/
example_config.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
exports.opt = {
couch_user: 'nodester',
couch_pass: 'password',
couch_host: '127.0.0.1',
couch_port: 5984,
couch_prefix: 'nodester',
couch_tables: ['coupons', 'nodefu', 'nextport', 'apps', 'repos', 'aliasdomains', 'password_resets', 'admins'],
home_dir: '/node/nodester/nodester',
app_dir: '/node/nodester/nodester',
git_home_dir: '/git',
apps_home_dir: '/app',
public_html_dir: '/node/nodester/nodester/public',
proxy_table_file: '/node/nodester/nodester/var/proxy_table.json',
logs_dir: '/node/logs/',
tl_dom: 'testnodester.com',
api_dom: 'api.testnodester.com',
git_dom: 'testnodester.com',
git_user: 'nodester',
coupon_code: 'CouponCode',
blocked_apps: ['www', 'api', 'admin', 'support', 'blog', 'site'],
restart_key: 'PleaseRestartMyAppMKey', // keep this secret, and make sure it matches what is in ./scripts/gitreposetup.sh
userid: 'nodester',
app_uid: 100,
enable_ssl: false, // Currently SSL forward to the app/api, when I have a wildcard cert to test, then all apps can have SSL.
ssl_ca_file: '',
ssl_cert_file: '',
ssl_key_file: '',
node_base_folder: '',
redis: {
host: '127.0.0.1',
port: 6379,
user: 'nodester',
auth: 'password'
},
//Amazon SES mail info
SES: {
AWSAccessKeyID: 'ACCESSKEY',
AWSSecretKey: 'SECRETKEY',
ServiceUrl: 'https://email.us-east-1.amazonaws.com',
}
};