Hi,
I have a Digital Ocean server with some Meteor applications happily deployed using mup
(with let’s encrypt included).
Now I developed another Meteor application using the latest version 1.8.0.1.
I created a mup.js configuration file similar to my previous deployment made for 1.6.x:
"servers": {
"one": {
"host": "1.2.3.4",
"username": "root",
"password": "password"
}
},
"app": {
"name": "my-app",
"path": "../.",
"servers": {
"one": {}
},
"buildOptions": {
"serverOnly": true
},
"env": {
"ROOT_URL": "https://subdomain.host.com",
"MONGO_URL": "mongodb://mongodb:27017/my-app",
"PORT": 32778,
"VIRTUAL_HOST": "mypp.domain.com",
"HTTPS_METHOD": "redirect",
"HTTP_FORWARDED_COUNT": 1,
"LETSENCRYPT_HOST": "myapp.domain.com",
"LETSENCRYPT_EMAIL": "team@domain.com"
},
"docker": {
"image": "abernix/meteord:node-8.9.3-base",
"args": [
"--link=mongodb:mongodb"
]
},
"enableUploadProgressBar": true,
"deployCheckWaitTime": 120,
"type": "meteor"
},
"mongo": {
"port": 27017,
"version": "3.4.1",
"servers": {
"one": {}
}
},
"proxy": {
"domains": "myapp.domain.com",
"ssl": {
"letsEncryptEmail": "team@domain.com",
"forceSSL": true
}
}
}
Can I use this or do I need to change something? How?
Thanks
Massimo