Last active
June 5, 2017 21:57
-
-
Save xenithorb/03ba08ec4faec2449072139f89ef108d to your computer and use it in GitHub Desktop.
Kanboard worker service (beanstalkd)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/systemd/system/kanboard-beanstalk-worker.service | |
[Unit] | |
Description=Kanboard background worker (beanstalkd) | |
Wants=beanstalkd.service postgresql.service | |
After=postgresql.service | |
[Service] | |
Type=simple | |
User=apache | |
Group=apache | |
WorkingDirectory=/var/www/html/kanboard | |
ExecStart=/usr/bin/php -f ./cli worker -n | |
Restart=always | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment