I have successfully deployed the app to Digital Ocean via MUP.
The domain name has already been set and I have changed the domain name server from domain’s registrar and point it to DigitalOcean Nameservers
Everything looks good, but it turns out nothing is showing up.
The meteor version is 1.4.4.2
below is my settings:
module.exports = {
servers: {
one: {
host: 'xxx.xxx.xx.xx',
username: 'username',
password: 'password'
}
},
meteor: {
"name": "example",
"path": "../",
"env": {
"PORT": 80,
"ROOT_URL": "https://example.com",
"MONGO_URL": 'mongodb://localhost/meteor'
},
"ssl": {
"crt": "./fullchain.pem",
"key": "./privkey.pem",
"port": 443
},
"deployCheckWaitTime": 120,
servers: {
one: {}
},
buildOptions: {
serverOnly: true
},
docker: {
image: 'abernix/meteord:base',
imagePort: 80,
imageFrontendServer: 'meteorhacks/mup-frontend-server',
bind: '127.0.0.1',
},
},
mongo: {
port: 27017,
version: '3.4.1',
servers: {
one: {}
}
}
};
Anyone could help me out?
Thanks.