mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
4 lines
279 B
Bash
Executable file
4 lines
279 B
Bash
Executable file
#!/bin/sh
|
|
# `/sbin/setuser www-data` runs the given command as the user `www-data`.
|
|
cd /srv/webvirtcloud || exit
|
|
exec /sbin/setuser www-data /srv/webvirtcloud/venv/bin/gunicorn webvirtcloud.wsgi:application -c /srv/webvirtcloud/gunicorn.conf.py >> /var/log/webvirtcloud.log 2>&1
|