diff --git a/docs/best-practices/deployment.md b/docs/best-practices/deployment.md index fdd59cb..e7dc7f2 100644 --- a/docs/best-practices/deployment.md +++ b/docs/best-practices/deployment.md @@ -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 @@ -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).