mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 21:42:08 +02:00

* npm: improved description of npm list and npm install * npm, nvm: add Spanish translation * nvm: add Spanish translations to the commands * helm-install, helm, nest, netlify, next, nginx, vite: add Spanish translation * choco, clear, cmd, del, dir, mkdir: add Spanish translation * helm-*: update Spanish translation Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages.es/common: update pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages.es/windows: update pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Darío Hereñú <magallania@gmail.com>
24 lines
619 B
Markdown
24 lines
619 B
Markdown
# nginx
|
|
|
|
> Servidor web Nginx.
|
|
> Más información: <https://nginx.org/en/>.
|
|
|
|
- Inicia el servidor con el archivo de configuración por defecto:
|
|
|
|
`nginx`
|
|
|
|
- Inicia el servidor con un archivo de configuración personalizado:
|
|
|
|
`nginx -c {{archivo_de_configuración}}`
|
|
|
|
- Inicia el servidor con un prefijo para todas las rutas relativas en el archivo de configuración:
|
|
|
|
`nginx -c {{archivo_de_configuración}} -p {{prefijo/para/rutas/relativas}}`
|
|
|
|
- Prueba la configuración sin afectar al servidor en ejecución:
|
|
|
|
`nginx -t`
|
|
|
|
- Recarga la configuración enviando una señal sin tiempo de inactividad:
|
|
|
|
`nginx -s reload`
|