module.exports = {
servers: {
one: {
// TODO: set host address, username, and authentication method
host: ‘server_IP’,
username: ‘username’,
// pem: ‘./path/to/pem’
password: ‘passwd’,
opts: {
port: 8013
}
// or neither for authenticate from ssh-agent
}
},
app: {
// TODO: change app name and path
name: ‘demo’,
path: ‘…/’,
servers: {
one: {},
},
buildOptions: {
serverOnly: true,
},
env: {
// TODO: Change to your app's url
// If you are using ssl, it needs to start with https://
ROOT_URL: 'http://server_IP:1024',
MONGO_URL: 'mongodb://mongodb/meteor',
MONGO_OPLOG_URL: 'mongodb://mongodb/local',
PORT:1024
},
docker: {
// change to 'abernix/meteord:base' if your app is using Meteor 1.4 - 1.5
image: 'abernix/meteord:node-8.4.0-base',
},
// Show progress bar while uploading bundle to server
// You might need to disable it on CI servers
enableUploadProgressBar: true
},
mongo: {
version: ‘3.4.1’,
servers: {
one: {}
}
},
// (Optional)
// Use the proxy to setup ssl or to route requests to the correct
// app when there are several apps
// proxy: {
// domains: ‘mywebsite.com,www.mywebsite.com’,
// ssl: {
// // Enable Let’s Encrypt
// letsEncryptEmail: ‘email@domain.com’
// }
// }
};