mirror of https://github.com/CrimsonTome/tldr.git
nginx: add German translation (#8895)
parent
3bebe109f4
commit
b4d4272816
|
@ -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`
|
|
@ -7,13 +7,13 @@
|
||||||
|
|
||||||
`nginx`
|
`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:
|
- Test the configuration without affecting the running server:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue