diff --git a/pages.de/common/nginx.md b/pages.de/common/nginx.md new file mode 100644 index 0000000000..4062fe2eae --- /dev/null +++ b/pages.de/common/nginx.md @@ -0,0 +1,24 @@ +# nginx + +> Nginx Webserver. +> Weitere Informationen: . + +- Starte den Server mit der standardmäßigen Konfigurationsdatei: + +`nginx` + +- Starte den Server mit einer benutzerdefinierten Konfigurationsdatei: + +`nginx -c {{konfigurationsdatei}}` + +- Starte den Server mit einem Präfix für alle relativen Pfaden in der Konfigurationsdatei: + +`nginx -c {{konfigurationsdatei}} -p {{präfix/für/relative/pfade}}` + +- Teste die Konfigurationsdatei ohne den laufenden Server zu beeinflussen: + +`nginx -t` + +- Lade die Konfigurationsdatei durch das Senden eines Signales ohne Pause neu: + +`nginx -s reload` diff --git a/pages/common/nginx.md b/pages/common/nginx.md index f35c0b577f..e3ffeb6832 100644 --- a/pages/common/nginx.md +++ b/pages/common/nginx.md @@ -7,13 +7,13 @@ `nginx` -- Start server with a custom config file: +- Start server with a custom configuration file: -`nginx -c {{config_file}}` +`nginx -c {{configuration_file}}` -- Start server with a prefix for all relative paths in the config file: +- Start server with a prefix for all relative paths in the configuration file: -`nginx -c {{config_file}} -p {{prefix/for/relative/paths}}` +`nginx -c {{configuration_file}} -p {{prefix/for/relative/paths}}` - Test the configuration without affecting the running server: