mirror of
https://github.com/spacebarchat/docs.git
synced 2024-11-08 11:22:31 +01:00
systemd guide
This commit is contained in:
parent
a60a75d8d3
commit
451ae72867
21
docs/server/systemd.md
Normal file
21
docs/server/systemd.md
Normal file
@ -0,0 +1,21 @@
|
||||
# Systemd Service
|
||||
|
||||
If you want to run Fosscord as a systemd service, simply put this in ``/etc/systemd/system/fosscord.service``:
|
||||
|
||||
```
|
||||
[Unit]
|
||||
Description=<your description>
|
||||
|
||||
[Service]
|
||||
User=<your user>
|
||||
WorkingDirectory=<fosscord bundle directory>
|
||||
ExecStart=npm run start:bundle
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
```
|
||||
|
||||
Then, execute ``sudo systemctl start fosscord`` from your terminal.
|
||||
|
||||
If you want to automatically run Fosscord on boot, execute ``sudo systemctl enable fosscord``
|
Loading…
Reference in New Issue
Block a user