You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
430 B
INI
25 lines
430 B
INI
[Unit]
|
|
Description=node.js on {{ domain }}
|
|
After=syslog.target
|
|
After=network.target
|
|
Requires=mariadb.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User={{ system_user }}
|
|
Group={{ system_user }}
|
|
|
|
WorkingDirectory={{ src }}
|
|
ExecStart=/usr/bin/npm start
|
|
EnvironmentFile={{ service_environment_file }}
|
|
|
|
TimeoutStartSec=2s
|
|
TimeoutStopSec=10s
|
|
Restart=always
|
|
RestartSec=2s
|
|
StartLimitInterval=60s
|
|
StartLimitBurst=5
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|