Can MUPX deploy to Ubuntu self hosting instead of third party Digital Ocean etc? Just about every examples out there shows its usage with Digital Ocean, etc. But I don’t want to use any external providers, just an intranet wide for own company usage.
{
// Server authentication info
"servers": [
{
// "host": "IP Address", // Vagrant
// "host": "172.17.0.2", // Docker
"username": "root",
"password": "password",
// or pem file (ssh based authentication)
// WARNING: Keys protected by a passphrase are not supported
// "pem": "~/.ssh/id_rsa",
// Also, for non-standard ssh port use this
//"sshOptions": { "port" : 49154 },
// server specific environment variables
"env": {}
}
],
// Install MongoDB on the server. Does not destroy the local MongoDB on future setups
"setupMongo": true,
"setupNode": true,
"nodeVersion": "0.10.40",
"setupPhantom": false,
// Application name (no spaces).
"appName": "spark2acs",
// Location of app (local directory). This can reference '~' as the users home directory.
// i.e., "app": "~/Meteor/my-app",
// This is the same as the line below.
"app": "..",
// Configure environment
// ROOT_URL must be set to your correct domain (https or http)
"env": {
"PORT": 3000,
"ROOT_URL": "http://localhost:3000",
"CLUSTER_WORKERS_COUNT": "auto",
"MONGO_URL": "mongodb://@localhost:27017/appName"
},
// Meteor Up checks if the app comes online just after the deployment.
// Before mup checks that, it will wait for the number of seconds configured below.
"deployCheckWaitTime": 600,
// "ssl": {
// "pem": "./ssl.pem"
// },
// show a progress bar while uploading.
// Make it false when you deploy using a CI box.
"enableUploadProgressBar": true
}