Skip to content
Closed
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
9 changes: 8 additions & 1 deletion docs/best-practices/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ $ sudo systemctl start acme.service
```

And that's it already! Systemd now monitors our application server and will
automatically start, stop and restart the server application when needed. You
automatically start, stop and restart the server application. You
can check the status at any time like this:

```bash
Expand All @@ -344,6 +344,13 @@ $ sudo systemctl status acme.service
[…]
```

If you add new content to your project files this configuration won't trigger.
Therefore you can simply restart your service manually by executing 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