From b4d4272816acb3f01561a7800ee928194674cb1e Mon Sep 17 00:00:00 2001 From: Lukas Date: Tue, 11 Oct 2022 02:50:13 +0200 Subject: [PATCH] nginx: add German translation (#8895) --- pages.de/common/nginx.md | 24 ++++++++++++++++++++++++ pages/common/nginx.md | 8 ++++---- 2 files changed, 28 insertions(+), 4 deletions(-) create mode 100644 pages.de/common/nginx.md diff --git a/pages.de/common/nginx.md b/pages.de/common/nginx.md new file mode 100644 index 000000000..4062fe2ea --- /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 f35c0b577..e3ffeb683 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: