Skip to content

Commit 4f21744

Browse files
committed
Fixes after review
1 parent c872ab8 commit 4f21744

File tree

13 files changed

+23
-23
lines changed

13 files changed

+23
-23
lines changed

_build/spelling_word_list.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ namespacing
203203
natively
204204
nd
205205
netmasks
206-
NGINX
206+
nginx
207207
normalizer
208208
normalizers
209209
npm

bundles/best_practices.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ The index file (for example ``Resources/doc/index.rst`` or
188188
``Resources/doc/index.md``) is the only mandatory file and must be the entry
189189
point for the documentation. The
190190
:doc:`reStructuredText (rST) </contributing/documentation/format>` is the format
191-
used to render the documentation on ``symfony.com``.
191+
used to render the documentation on the Symfony website.
192192

193193
Installation Instructions
194194
~~~~~~~~~~~~~~~~~~~~~~~~~

components/dotenv.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Sensitive information and environment-dependent settings should be defined as
2828
environment variables (as recommended for `twelve-factor applications`_). Using
2929
a ``.env`` file to store those environment variables eases development and CI
3030
management by keeping them in one "standard" place and agnostic of the
31-
technology stack you are using (NGINX vs PHP built-in server for instance).
31+
technology stack you are using (nginx vs PHP built-in server for instance).
3232

3333
.. note::
3434

components/http_foundation.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -477,10 +477,10 @@ represented by a PHP callable instead of a string::
477477

478478
Additionally, PHP isn't the only layer that can buffer output. Your web
479479
server might also buffer based on its configuration. Some servers, such as
480-
NGINX, let you disable buffering at the config level or by adding a special HTTP
480+
nginx, let you disable buffering at the config level or by adding a special HTTP
481481
header in the response::
482482

483-
// disables FastCGI buffering in NGINX only for this response
483+
// disables FastCGI buffering in nginx only for this response
484484
$response->headers->set('X-Accel-Buffering', 'no')
485485

486486
.. _component-http-foundation-serving-files:
@@ -517,7 +517,7 @@ Alternatively, if you are serving a static file, you can use a
517517

518518
The ``BinaryFileResponse`` will automatically handle ``Range`` and
519519
``If-Range`` headers from the request. It also supports ``X-Sendfile``
520-
(see for `NGINX`_ and `Apache`_). To make use of it, you need to determine
520+
(see for `nginx`_ and `Apache`_). To make use of it, you need to determine
521521
whether or not the ``X-Sendfile-Type`` header should be trusted and call
522522
:method:`Symfony\\Component\\HttpFoundation\\BinaryFileResponse::trustXSendfileTypeHeader`
523523
if it should::
@@ -665,7 +665,7 @@ Learn More
665665
/session/*
666666
/http_cache/*
667667

668-
.. _NGINX: https://www.nginx.com/resources/wiki/start/topics/examples/xsendfile/
668+
.. _nginx: https://www.nginx.com/resources/wiki/start/topics/examples/xsendfile/
669669
.. _Apache: https://tn123.org/mod_xsendfile/
670670
.. _`JSON Hijacking`: http://haacked.com/archive/2009/06/25/json-hijacking.aspx
671671
.. _OWASP guidelines: https://www.owasp.org/index.php/OWASP_AJAX_Security_Guidelines#Always_return_JSON_with_an_Object_on_the_outside

configuration/external_parameters.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ will be used whenever the corresponding environment variable is *not* found:
9696
$container->setParameter('env(DATABASE_HOST)', 'localhost');
9797
9898
Setting environment variables is generally done at the web server level or in the
99-
terminal. If you're using Apache, NGINX or just the console, you can use e.g. one
99+
terminal. If you're using Apache, nginx or just the console, you can use e.g. one
100100
of the following:
101101

102102
.. configuration-block::

create_framework/front_controller.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ To access a page, you must now use the ``front.php`` script:
117117

118118
.. tip::
119119

120-
Most web servers like Apache or NGINX are able to rewrite the incoming URLs
120+
Most web servers like Apache or nginx are able to rewrite the incoming URLs
121121
and remove the front controller script so that your users will be able to
122122
type ``http://127.0.0.1:4321/hello?name=Fabien``, which looks much better.
123123

deployment/heroku.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ directory of the application and add just the following content:
9898
9999
.. note::
100100

101-
If you prefer to use NGINX, which is also available on Heroku, you can create
101+
If you prefer to use nginx, which is also available on Heroku, you can create
102102
a configuration file for it and point to it from your Procfile as described
103103
in the `Heroku documentation`_:
104104

reference/forms/types/textarea.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Renders a ``textarea`` HTML element.
3030
.. tip::
3131

3232
If you prefer to use an **advanced WYSIWYG editor** instead of a plain
33-
text area, consider using the FOSCKEditorBundle community bundle. Read
33+
``<textarea>``, consider using the FOSCKEditorBundle community bundle. Read
3434
`its documentation`_ to learn how to integrate it in your Symfony application.
3535

3636
Inherited Options

setup.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Running the Symfony Application
161161
-------------------------------
162162

163163
On production servers, Symfony applications use web servers such as Apache or
164-
NGINX (see :doc:`configuring a web server to run Symfony </setup/web_server_configuration>`).
164+
nginx (see :doc:`configuring a web server to run Symfony </setup/web_server_configuration>`).
165165
However, on your local development machine you can also use the web server
166166
provided by Symfony, which in turn uses the built-in web server provided by PHP.
167167

@@ -191,7 +191,7 @@ pressing ``Ctrl+C`` from the terminal or command console.
191191
.. tip::
192192

193193
Symfony's web server is great for developing, but should **not** be
194-
used on production. Instead, use Apache or NGINX.
194+
used on production. Instead, use Apache or nginx.
195195
See :doc:`/setup/web_server_configuration`.
196196

197197
Checking Symfony Application Configuration and Setup

setup/homestead.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ configuration:
5252
to: /home/vagrant/projects/symfony_demo/web
5353
type: symfony
5454
55-
The ``type`` option tells Homestead to use the Symfony NGINX configuration.
55+
The ``type`` option tells Homestead to use the Symfony nginx configuration.
5656

5757
At last, edit the hosts file on your local machine to map ``symfony-demo.test``
5858
to ``192.168.10.10`` (which is the IP used by Homestead)::

setup/symfony_server.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Symfony Local Web Server
22
========================
33

4-
You can run Symfony applications with any web server (Apache, NGINX, the
4+
You can run Symfony applications with any web server (Apache, nginx, the
55
internal PHP web server, etc.). However, Symfony provides its own web server to
66
make you more productive while developing your applications.
77

setup/web_server_configuration.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ The preferred way to develop your Symfony application is to use
99

1010
However, when running the application in the production environment, you'll need
1111
to use a fully-featured web server. This article describes several ways to use
12-
Symfony with Apache or NGINX.
12+
Symfony with Apache or nginx.
1313

1414
When using Apache, you can configure PHP as an
1515
:ref:`Apache module <web-server-apache-mod-php>` or with FastCGI using
1616
:ref:`PHP FPM <web-server-apache-fpm>`. FastCGI also is the preferred way
17-
to use PHP :ref:`with NGINX <web-server-nginx>`.
17+
to use PHP :ref:`with nginx <web-server-nginx>`.
1818

1919
.. sidebar:: The Web Directory
2020

@@ -251,10 +251,10 @@ instead:
251251
252252
.. _web-server-nginx:
253253

254-
NGINX
254+
nginx
255255
-----
256256

257-
The **minimum configuration** to get your application running under NGINX is:
257+
The **minimum configuration** to get your application running under nginx is:
258258

259259
.. code-block:: nginx
260260
@@ -337,10 +337,10 @@ The **minimum configuration** to get your application running under NGINX is:
337337
By default, Symfony applications include several ``.htaccess`` files to
338338
configure redirections and to prevent unauthorized access to some sensitive
339339
directories. Those files are only useful when using Apache, so you can
340-
safely remove them when using NGINX.
340+
safely remove them when using nginx.
341341

342-
For advanced NGINX configuration options, read the official `NGINX documentation`_.
342+
For advanced nginx configuration options, read the official `nginx documentation`_.
343343

344344
.. _`Apache documentation`: https://httpd.apache.org/docs/
345345
.. _`FastCgiExternalServer`: https://docs.oracle.com/cd/B31017_01/web.1013/q20204/mod_fastcgi.html#FastCgiExternalServer
346-
.. _`NGINX documentation`: https://www.nginx.com/resources/wiki/start/topics/recipes/symfony/
346+
.. _`nginx documentation`: https://www.nginx.com/resources/wiki/start/topics/recipes/symfony/

web_link.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ with HTTP 1.x:
1818

1919
Something important to consider is that all these HTTP/2 features require a
2020
secure HTTPS connection, even when working on your local machine. The main web
21-
servers (Apache, NGINX, Caddy, etc.) support this, but you can also use the
21+
servers (Apache, nginx, Caddy, etc.) support this, but you can also use the
2222
`Docker installer and runtime for Symfony`_ created by Kévin Dunglas, from the
2323
Symfony community.
2424

0 commit comments

Comments
 (0)