Skip to content
Snippets Groups Projects
webapps-deliverer.service 493 B
[Unit]
Description=Delivering file contents of the vaclab web applications.
After=network.target

[Service]
User=nobody
Environment=FLASK_PORT=8081
Environment=DATA_PATH=/srv/www/data/
Environment=FLASK_ENV=development
Environment=FLASK_DEBUG=1
Type=simple
StandardOutput=null
StandardError=null
Restart=no
WorkingDirectory=/usr/local/share/webapps-deliverer
ExecStart=/bin/bash -l -c \
  "./server ${FLASK_PORT} ${DATA_PATH} ${FLASK_ENV} ${FLASK_DEBUG}"

[Install]
WantedBy=multi-user.target