Skip to content

Commit 418aca7

Browse files
committed
docs: replace Nginx with nginx
It seems all lower case is the official.
1 parent b969769 commit 418aca7

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

user_guide_src/source/general/environments.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ config using `SetEnv <https://httpd.apache.org/docs/2.4/mod/mod_env.html#setenv>
7575
7676
.. _environment-nginx:
7777

78-
Nginx
78+
nginx
7979
-----
8080

81-
Under Nginx, you must pass the environment variable through the ``fastcgi_params``
81+
Under nginx, you must pass the environment variable through the ``fastcgi_params``
8282
in order for it to show up under the ``$_SERVER`` variable. This allows it to work on the
8383
virtual-host level, instead of using `env` to set it for the entire server, though that
8484
would work fine on a dedicated server. You would then modify your server config to something
@@ -97,7 +97,7 @@ like:
9797
}
9898
}
9999
100-
Alternative methods are available for Nginx and other servers, or you can
100+
Alternative methods are available for nginx and other servers, or you can
101101
remove this logic entirely and set the constant based on the server's IP address
102102
(for instance).
103103

user_guide_src/source/general/urls.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ request for your index.php file.
9595

9696
.. _urls-remove-index-php-nginx:
9797

98-
NGINX
98+
nginx
9999
-----
100100

101-
Under NGINX, you can define a location block and use the ``try_files`` directive to get the same effect as we did with
101+
Under nginx, you can define a location block and use the ``try_files`` directive to get the same effect as we did with
102102
the above Apache configuration:
103103

104104
.. code-block:: nginx

user_guide_src/source/installation/running.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ in **.env** file to take advantage of the debugging tools provided. See
5959
Setting Writable Folder Permission
6060
==================================
6161

62-
If you will be running your site using a web server (e.g., Apache or Nginx),
62+
If you will be running your site using a web server (e.g., Apache or nginx),
6363
you will need to modify the permissions for the **writable** folder inside
6464
your project, so that it is writable by the user or account used by your
6565
web server.
@@ -368,10 +368,10 @@ Setting Environment
368368
See :ref:`Handling Multiple Environments <environment-apache>`.
369369

370370
******************
371-
Hosting with Nginx
371+
Hosting with nginx
372372
******************
373373

374-
Nginx is the second most widely used HTTP server for web hosting.
374+
nginx is the second most widely used HTTP server for web hosting.
375375
Here you can find an example configuration using PHP 8.1 FPM (unix sockets) under Ubuntu Server.
376376

377377
default.conf

user_guide_src/source/tutorial/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Running Development Server
9292
==========================
9393

9494
With that out of the way it's time to view your application in a browser. You can
95-
serve it through any server of your choice, Apache, Nginx, etc, but CodeIgniter
95+
serve it through any server of your choice, Apache, nginx, etc, but CodeIgniter
9696
comes with a simple command that takes advantage of PHP's built-in server to get
9797
you up and running fast on your development machines. Type the following on the
9898
command line from the root of your project:

0 commit comments

Comments
 (0)