1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| [Unit]
| Description=Sales CRM Node Service
| After=network.target
|
| [Service]
| Type=simple
| WorkingDirectory=/opt/sales-crm
| Environment=NODE_ENV=production
| Environment=PORT=8090
| ExecStart=/usr/bin/node /opt/sales-crm/work/crm_full_server.js
| Restart=always
| RestartSec=5
| User=root
|
| [Install]
| WantedBy=multi-user.target
|
|