Skip to content

Commit

Permalink
Merge pull request #386 from akumpf/patch-1
Browse files Browse the repository at this point in the history
Set restart_key to be same as default in `./scripts/gitreposetup.sh`
  • Loading branch information
alejandro committed Jun 6, 2012
2 parents 0748644 + ffbbf41 commit 8286a75
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions example_config.js
Expand Up @@ -6,25 +6,25 @@ exports.opt = {
couch_prefix: 'nodester', couch_prefix: 'nodester',
couch_tables: ['coupons', 'nodefu', 'nextport', 'apps', 'repos', 'aliasdomains', 'password_resets', 'admins'], couch_tables: ['coupons', 'nodefu', 'nextport', 'apps', 'repos', 'aliasdomains', 'password_resets', 'admins'],
home_dir: '/node/nodester/nodester', home_dir: '/node/nodester/nodester',
app_dir: '/node/nodester/nodester', app_dir: '/node/nodester/nodester',
git_home_dir: '/git', git_home_dir: '/git',
apps_home_dir: '/app', apps_home_dir: '/app',
public_html_dir: '/node/nodester/nodester/public', public_html_dir: '/node/nodester/nodester/public',
proxy_table_file: '/node/nodester/nodester/var/proxy_table.json', proxy_table_file: '/node/nodester/nodester/var/proxy_table.json',
logs_dir: '/node/logs/', logs_dir: '/node/logs/',
tl_dom: 'testnodester.com', tl_dom: 'testnodester.com',
api_dom: 'api.testnodester.com', api_dom: 'api.testnodester.com',
git_dom: 'testnodester.com',
git_user: 'nodester', git_user: 'nodester',
git_dom: 'testnodester.com',
coupon_code: 'CouponCode', coupon_code: 'CouponCode',
blocked_apps: ['www', 'api', 'admin', 'support', 'blog', 'site'], blocked_apps: ['www', 'api', 'admin', 'support', 'blog', 'site'],
restart_key: 'KeepThisSecret', restart_key: 'PleaseRestartMyAppMKey', // keep this secret, and make sure it matches what is in ./scripts/gitreposetup.sh
userid: 'nodester', userid: 'nodester',
app_uid: 100, 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. 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_ca_file: '',
ssl_cert_file: '', ssl_cert_file: '',
ssl_key_file: '', ssl_key_file: '',
node_base_folder: '', node_base_folder: '',


redis: { redis: {
Expand All @@ -38,7 +38,7 @@ exports.opt = {
//Amazon SES mail info //Amazon SES mail info
SES: { SES: {
AWSAccessKeyID: 'ACCESSKEY', AWSAccessKeyID: 'ACCESSKEY',
AWSSecretKey: 'SECRETKEY', AWSSecretKey: 'SECRETKEY',
ServiceUrl: 'https://email.us-east-1.amazonaws.com', ServiceUrl: 'https://email.us-east-1.amazonaws.com',
} }
}; };

0 comments on commit 8286a75

Please sign in to comment.