Created
November 17, 2015 15:18
-
-
Save wienczny/e8269beb847388aec09a to your computer and use it in GitHub Desktop.
Phabricator Systemd Units
This file contains 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
[Unit] | |
Description=Phabricator Aphlict | |
After=syslog.target network.target mysql.service | |
[Service] | |
Type=forking | |
User=phabricator | |
Group=phabricator | |
ExecStart=/srv/http/phabricator/bin/aphlict start | |
ExecStop=/srv/http/phabricator/bin/aphlict stop | |
[Install] | |
WantedBy=multi-user.target |
This file contains 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
[Unit] | |
Description=Phabricator Daemons | |
After=syslog.target network.target mysql.service | |
[Service] | |
Type=forking | |
User=phabricator | |
Group=phabricator | |
ExecStart=/srv/http/phabricator/bin/phd start | |
ExecStop=/srv/http/phabricator/bin/phd stop | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment