Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/best-practices/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,13 @@ $ sudo systemctl status acme.service
[…]
```

On top of this, you need to restart your service manually when the source code
has been modified. In this case, simply execute the following command:

```bash
$ sudo systemctl restart acme.service
```

This should be enough to get you started with systemd. If you want to learn more
about systemd, check out the
[official documentation](https://www.freedesktop.org/software/systemd/man/systemd.service.html).
Expand Down