gistfile1.js
January 28, 2015 ยท View on GitHub
{ // Server authentication info "servers": [ { "host": "ip-1", "username": "root", "pem": "./bulletproofdo", "env": { "CLUSTER_BALANCER_URL": "https://one.bulletproofmeteor.com" } }, { "host": "ip-2", "username": "root", "pem": "./bulletproofdo", "env": { "CLUSTER_BALANCER_URL": "https://two.bulletproofmeteor.com" } }, { "host": "ip-3", "username": "root", "pem": "./bulletproofdo", "env": { "CLUSTER_BALANCER_URL": "https://three.bulletproofmeteor.com" } }, { "host": "ip-4", "username": "root", "pem": "./bulletproofdo" } ],
// Install MongoDB in the server, does not destroy local MongoDB on future setup "setupMongo": false,
// WARNING: Node.js is required! Only skip if you already have Node.js installed on server. "setupNode": true,
// WARNING: If nodeVersion omitted will setup 0.10.33 by default. Do not use v, only version number. "nodeVersion": "0.10.33",
// Install PhantomJS in the server "setupPhantom": true,
// Application name (No spaces) "appName": "meteor",
// Location of app (local directory) "app": "../",
// Configure environment "env": { "ROOT_URL": "https://bulletproofmeteor.com", "MONGO_URL": "mongodb://app:password@mongodb.com/dbname", "MONGO_OPLOG_URL": "mongodb://app:password@mongodb.com/local", "DISABLE_WEBSOCKETS": "1",
"CLUSTER_DISCOVERY_URL": "mongodb://app:password@mongodb.com/dbname",
"CLUSTER_SERVICE": "web"
},
// Meteor Up checks if the app comes online just after the deployment // before mup checks that, it will wait for no. of seconds configured below "deployCheckWaitTime": 15 }