-
Notifications
You must be signed in to change notification settings - Fork 0
/
mup.js.example
66 lines (56 loc) · 1.5 KB
/
mup.js.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
module.exports = {
servers: {
one: {
// TODO: set host address, username, and authentication method
host: '0.0.0.0',
username: 'username',
// pem: './path/to/pem'
password: 'password'
// or neither for authenticate from ssh-agent
}
},
app: {
// TODO: change app name and path
name: 'wellbeing-server',
path: 'wellbeing/app/',
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://172.17.0.3',
// override the default port (80)
// PORT: '3000',
MONGO_URL: 'mongodb://localhost/meteor',
SECRET: 'secret123'
},
docker: {
// abernix/meteord:node-12-base works with Meteor 1.9 - 1.10
// If you are using a different version of Meteor,
// refer to the docs for the correct image to use.
image: 'abernix/meteord:node-12-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: {},
},
},
// 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'
// }
// }
};