Deploy meteor app using mup

Hi. I need to deploy my meteor app to hosting with no access to ssh. What I should specify in mup.js to deploy my app? My mup,js looks something like this:

module.exports = {
servers: {
one: {
host: ‘host ip address’,
username: ‘root’,
password: ‘1’,

}

},

app: {
name: ‘saccess-mobile’,
path: ‘…/’,

servers: {
  one: {},
},

buildOptions: {
  serverOnly: true,
},

env: {
  ROOT_URL: 'https://subdomain.name',
  MONGO_URL: 'mongodb://localhost/meteor',
  
},

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: {}
},
port: 27017,
},

You need SSH access to use mup, as all communication happens over SSH.

How can you access it if you don’t have SSH access? Is it a managed service?

If it is a manged service, you might need to use that service’s CLI or gui.