A simple utility to manage Nginx configurations.

Change 'restart' to 'reload' in the NX_RELOAD_CMD envvar example

+1 -1
+1 -1
README.md
··· 143 143 Alternative `test` and `reload` commands can be configured using the following environment variables. The following example demonstrates how this might look in a containerized context. 144 144 145 145 ```bash 146 - export NX_RELOAD_CMD='systemctl --user restart nginx' 146 + export NX_RELOAD_CMD='systemctl --user reload nginx' 147 147 export NX_TEST_CMD='podman exec nginx nginx -t' 148 148 ``` 149 149