Skip to content
Snippets Groups Projects
pm2.production.json 563 B
Newer Older
{
	"apps": [{
		"name": "rocket.chat",
		"exec_mode": "cluster",
		"instances" : 0,
Gabriel Engel's avatar
Gabriel Engel committed
		"max_memory_restart": "400M",
		"log_date_format": "YYYY-MM-DD HH:mm:ss SSS",
		"script": "/var/www/rocket.chat/bundle/main.js",
		"out_file": "/var/log/rocket.chat/app.log",
		"error_file": "/var/log/rocket.chat/err.log",
		"port": "80",
		"env": {
Gabriel Engel's avatar
Gabriel Engel committed
			"CDN_PREFIX": "//dbde4sd21oahf.cloudfront.net",
			"MONGO_URL": "mongodb://localhost:27017/rocketchat",
			"MONGO_OPLOG_URL": "mongodb://localhost:27017/local",
			"ROOT_URL": "http://rocket.chat",
			"PORT": "80"
		}
	}]
}