nginx: add German translation (#8895)

pull/1/head
Lukas 2022-10-11 02:50:13 +02:00 committed by GitHub
parent 3bebe109f4
commit b4d4272816
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 4 deletions

24
pages.de/common/nginx.md Normal file
View File

@ -0,0 +1,24 @@
# nginx
> Nginx Webserver.
> Weitere Informationen: <https://nginx.org/en/>.
- 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`

View File

@ -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: