diff --git a/docs/source/siteadmin/deploying.rst b/docs/source/siteadmin/deploying.rst
index 741e965..4e9bac2 100644
a
|
b
|
this ``nginx.conf`` file should be modeled on the following::
|
384 | 384 | } |
385 | 385 | } |
386 | 386 | |
| 387 | The first four ``location`` directives instruct Nginx to serve the |
| 388 | static and uploaded files directly rather than through the MediaGoblin |
| 389 | process. This approach is faster and requires less memory. |
| 390 | |
| 391 | .. note:: |
| 392 | |
| 393 | The user who owns the Nginx process, normally ``www-data``, |
| 394 | requires execute permission on the directories ``static``, |
| 395 | ``public``, ``theme_static`` and ``plugin_static`` plus all their |
| 396 | parent directories. This user also requires read permission on all |
| 397 | the files within these directories. This is normally the default. |
| 398 | |
387 | 399 | Now, nginx instance is configured to serve the MediaGoblin |
388 | 400 | application. Perform a quick test to ensure that this configuration |
389 | 401 | works. Restart nginx so it picks up your changes, with a command that |
… |
… |
Security Considerations
|
429 | 441 | and restart the server, so that it creates a new secret key. |
430 | 442 | All previous sessions will be invalidated. |
431 | 443 | |
| 444 | .. |
| 445 | Local variables: |
| 446 | fill-column: 70 |
| 447 | End: |