docs: Uncapitalize the name for nginx.

This matches how nginx refers to itself on its own website and
documentation.

Fixes #20887.
This commit is contained in:
Raghav Luthra 2022-01-25 11:51:47 +05:30 committed by Tim Abbott
parent ec86290e2a
commit 4b8cb0a8a9
7 changed files with 13 additions and 13 deletions

View File

@ -21,7 +21,7 @@ Linux sysadmin, you will have a much better experience if you get a
dedicated VM to install Zulip on instead (or [use
zulip.com](https://zulip.com)).
### Nginx
### nginx
Copy your existing nginx configuration to a backup and then merge the
one created by Zulip into it:

View File

@ -23,7 +23,7 @@ For details on each of these requirements, see below.
#### General
The installer expects Zulip to be the **only thing** running on the
system; it will install system packages with `apt` (like Nginx,
system; it will install system packages with `apt` (like nginx,
PostgreSQL, and Redis) and configure them for its own use. We strongly
recommend using either a fresh machine instance in a cloud provider, a
fresh VM, [our Docker image][docker-zulip-homepage], or a dedicated

View File

@ -106,7 +106,7 @@ application:
- PostgreSQL
- RabbitMQ
- Nginx
- nginx
- Redis
- memcached
@ -216,7 +216,7 @@ standard stuff:
especially for the database and where uploads are stored.
- Service uptime and standard monitoring for the [services Zulip
depends on](#troubleshooting-services). Most monitoring software
has standard plugins for Nginx, PostgreSQL, Redis, RabbitMQ,
has standard plugins for nginx, PostgreSQL, Redis, RabbitMQ,
and memcached, and those will work well with Zulip.
- `supervisorctl status` showing all services `RUNNING`.
- Checking for processes being OOM killed.

View File

@ -282,7 +282,7 @@ instructions for other supported platforms.
When `do-release-upgrade` asks you how to upgrade configuration
files for services that Zulip manages like Redis, PostgreSQL,
Nginx, and memcached, the best choice is `N` to keep the
nginx, and memcached, the best choice is `N` to keep the
currently installed version. But it's not important; the next
step will re-install Zulip's configuration in any case.
@ -429,7 +429,7 @@ instructions for other supported platforms.
When prompted for you how to upgrade configuration
files for services that Zulip manages like Redis, PostgreSQL,
Nginx, and memcached, the best choice is `N` to keep the
nginx, and memcached, the best choice is `N` to keep the
currently installed version. But it's not important; the next
step will re-install Zulip's configuration in any case.
@ -492,7 +492,7 @@ instructions for other supported platforms.
When prompted for you how to upgrade configuration
files for services that Zulip manages like Redis, PostgreSQL,
Nginx, and memcached, the best choice is `N` to keep the
nginx, and memcached, the best choice is `N` to keep the
currently installed version. But it's not important; the next
step will re-install Zulip's configuration in any case.

View File

@ -90,7 +90,7 @@ the backend, but does in JavaScript.
## System packages
For the third-party services like PostgreSQL, Redis, Nginx, and RabbitMQ
For the third-party services like PostgreSQL, Redis, nginx, and RabbitMQ
that are documented in the
[architecture overview](../overview/architecture-overview.md), we rely on the
versions of those packages provided alongside the Linux distribution

View File

@ -7,18 +7,18 @@ Zulip codebase, and dive deep into how each part works.
We will use as our example the creation of users through the API, but we
will also highlight how alternative requests are handled.
## A request is sent to the server, and handled by [Nginx](https://nginx.org/en/docs/)
## A request is sent to the server, and handled by [nginx](https://nginx.org/en/docs/)
When Zulip is deployed in production, all requests go through nginx.
For the most part we don't need to know how this works, except for when
it isn't working. Nginx does the first level of routing--deciding which
it isn't working. nginx does the first level of routing--deciding which
application will serve the request (or deciding to serve the request
itself for static content).
In development, `tools/run-dev.py` fills the role of nginx. Static files
are in your Git checkout under `static`, and are served unminified.
## Static files are [served directly][served-directly] by Nginx
## Static files are [served directly][served-directly] by nginx
[served-directly]: https://github.com/zulip/zulip/blob/main/puppet/zulip/files/nginx/zulip-include-frontend/app
@ -37,7 +37,7 @@ location /static/ {
}
```
## Nginx routes other requests [between Django and Tornado][tornado-django]
## nginx routes other requests [between Django and Tornado][tornado-django]
[tornado-django]: ../overview/architecture-overview.html?highlight=tornado#django-and-tornado

View File

@ -226,7 +226,7 @@ if settings.TWO_FACTOR_AUTHENTICATION_ENABLED:
# - runtornado.py has its own URL list for Tornado views. See the
# invocation of web.Application in that file.
#
# - The Nginx config knows which URLs to route to Django or Tornado.
# - The nginx config knows which URLs to route to Django or Tornado.
#
# - Likewise for the local dev server in tools/run-dev.py.