forked from nodester/nodester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_config.js
35 lines (34 loc) · 1.13 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
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'],
home_dir: '/var/nodester',
app_dir: '/var/nodester/nodester',
git_home_dir: '/git',
apps_home_dir: '/app',
public_html_dir: '/var/nodester/nodester/public',
proxy_table_file: '/var/nodester/var/proxy_table.json',
tl_dom: 'testnodester.com',
api_dom: 'api.testnodester.com',
git_user: 'nodester',
git_dom: 'testnodester.com',
coupon_code: 'CouponCode',
blocked_apps: ['www', 'api', 'admin', 'support', 'blog', 'site'],
restart_key: 'KeepThisSecret',
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: '/opt/node-v0.4.9_npm_v1.0.3',
//Amazon SES mail info
SES: {
AWSAccessKeyID: 'ACCESSKEY',
AWSSecretKey: 'SECRETKEY',
ServiceUrl: 'https://email.us-east-1.amazonaws.com',
}
};