forked from mateogo/develar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdsocial-cloud.json
49 lines (46 loc) · 1.03 KB
/
dsocial-cloud.json
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
{
"apps": [
{
"name": "dsocial",
"script" : "./bin/www",
"env": {
"NODE_ENV": "production",
"PORT": "8080",
"DBASE": "dsocial",
"SERVER": "https://dsocial.brown.gob.ar",
"FAVICON": "favicon.ico",
"PUBLIC": "/www/dsocial"
},
"args":[
"--max_old_space_size=2048"
]
},
{
"name": "salud",
"script" : "./bin/www",
"env": {
"NODE_ENV": "production",
"PORT": "8081",
"DBASE": "salud",
"SERVER": "https://salud.brown.gob.ar",
"FAVICON": "favicon.ico",
"PUBLIC": "/www/salud"
},
"args":[
"--max_old_space_size=1024"
]
},
{
"name": "industrias",
"script" : "./bin/www",
"env": {
"NODE_ENV": "production",
"PORT": "8082",
"DBASE": "industrias",
"SERVER": "https://industrias.brown.gob.ar",
"FAVICON": "favicon.ico",
"PUBLIC": "/www/industrias"
}
}
]
}