-
Notifications
You must be signed in to change notification settings - Fork 1
/
pm2.config.js
28 lines (27 loc) · 837 Bytes
/
pm2.config.js
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
// See documentation here: https://pm2.keymetrics.io/docs/usage/application-declaration/
module.exports = {
apps: [
{
name: "starter-frontend",
cwd: "/var/www/starter-frontend",
script: "server.js",
args: "start",
watch: [".next/BUILD_ID"],
ignore_watch: [".next/cache", "node_modules", "public"],
watch_delay: 5,
max_memory_restart: "400M",
env: {
NODE_ENV: "production",
PORT: 3000,
// NODE_TLS_REJECT_UNAUTHORIZED: 0,
NEXT_PUBLIC_DRUPAL_BASE_URL: "https://backend.starter.wakelabstudio.ru",
NEXT_IMAGE_DOMAIN: "backend.starter.wakelabstudio.ru",
DRUPAL_SITE_ID: "",
DRUPAL_FRONT_PAGE: "/node",
DRUPAL_PREVIEW_SECRET: "",
DRUPAL_CLIENT_ID: "",
DRUPAL_CLIENT_SECRET: "",
},
},
],
};