28 lines
613 B
Desktop File
28 lines
613 B
Desktop File
# myNode www service
|
|
# /etc/systemd/system/www.service
|
|
|
|
[Unit]
|
|
Description=myNode Web Server
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
KillMode=mixed
|
|
KillSignal=2
|
|
TimeoutSec=30
|
|
Restart=always
|
|
RestartSec=10
|
|
Nice=-15
|
|
IOAccounting=true
|
|
IOWeight=2000
|
|
WorkingDirectory=/var/www/mynode
|
|
ExecStart=/usr/bin/python2.7 /usr/bin/gunicorn -b 0.0.0.0:443 --certfile=/home/bitcoin/.mynode/https/myNode.local.crt --keyfile=/home/bitcoin/.mynode/https/myNode.local.key --workers 2 --timeout 300 wsgi:app
|
|
User=root
|
|
Group=root
|
|
StandardOutput=syslog
|
|
StandardError=syslog
|
|
SyslogIdentifier=www
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|