18 lines
387 B
Desktop File
18 lines
387 B
Desktop File
[Unit]
|
|
Description=Matlab web server
|
|
After=network-online.target firewalld.service
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
User=matlab-user
|
|
Type=simple
|
|
ExecStart=/usr/local/bin/gunicorn --bind unix:/tmp/matlabhub.sock matlabhub.app:app
|
|
ExecStop=/bin/kill -s STOP $MAINPID
|
|
ExecReload=/bin/kill -s HUP $MAINPID
|
|
TimeoutSec=0
|
|
RestartSec=2
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|