-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPassengerfile.json
More file actions
25 lines (25 loc) · 1.1 KB
/
Passengerfile.json
File metadata and controls
25 lines (25 loc) · 1.1 KB
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
{
// Tell Passenger that this is a Meteor app.
"app_type": "node",
"startup_file": "main.js",
"envvars": {
// Tell your app where MongoDB is
"MONGO_URL": "mongodb://localhost:27017/msgtesterdev",
// Tell your app what its root URL is
"ROOT_URL": "http://msgtestdev.vps.no",
"METEOR_SETTINGS": "{ \"public\": {\"environmentName\": \"DEV\", \"postgresInfo\": {\"host\": \"ims-dbsql.sst.vps.no\", \"database\": \"ipcdb_dev\", \"port\": 5432}}, \"private\": {\"postgres\": {\"user\": \"ipc_vps\", \"password\": \"<EnterPassword>\"}, \"MAIL_URL\": \"\"}}"
},
// Store log and PID file in parent directory
"log_file": "../passenger.log",
"pid_file": "../passenger.pid"
// Run the app in a production environment. The default value is "development".
"environment": "production",
// Run Passenger on port 80, the standard HTTP port.
"port": 3000,
// Tell Passenger to daemonize into the background.
"daemonize": true,
// Tell Passenger to run the app as the given user. Only has effect
// if Passenger was started with root privileges.
"user": "imsadm"
// define meteor settings
}