19 lines
408 B
Desktop File
19 lines
408 B
Desktop File
[Unit]
|
||
Description=Node.js DNS Application
|
||
After=network.target
|
||
|
||
[Service]
|
||
User=root
|
||
WorkingDirectory=/root/node-dns
|
||
ExecStart=/opt/node/bin/node /root/node-dns/index.js
|
||
Restart=on-failure
|
||
RestartSec=10
|
||
Environment=NODE_ENV=production
|
||
LimitNOFILE=65536
|
||
|
||
# 日志配置(systemd 236+ 支持 file:,否则建议用 journal)
|
||
StandardOutput=journal
|
||
StandardError=journal
|
||
|
||
[Install]
|
||
WantedBy=multi-user.target |