From a6a29fcf09fd0799e76ad132c6ae9be5ac441115 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Wed, 11 Oct 2017 17:11:20 +0100 Subject: [PATCH] nginx: small grammar fixes (#1537) --- pages/common/nginx.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/nginx.md b/pages/common/nginx.md index d4247c0617..9aa467c6c7 100644 --- a/pages/common/nginx.md +++ b/pages/common/nginx.md @@ -2,22 +2,22 @@ > Nginx web server. -- Start server with default config: +- Start server with the default config file: `nginx` -- Start server with custom config file: +- Start server with a custom config file: `nginx -c {{config_file}}` -- Start server with a prefix for all relative paths in config file: +- Start server with a prefix for all relative paths in the config file: `nginx -c {{config_file}} -p {{prefix/for/relative/paths}}` -- Test configuration without affecting the running server: +- Test the configuration without affecting the running server: `nginx -t` -- Reload configuration by sending a signal with no downtime: +- Reload the configuration by sending a signal with no downtime: `nginx -s reload`