diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-12-12 08:13:46 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-12-12 08:13:46 -0600 |
commit | 438dd8cd8f79f32609cce15d70ef6a93f1531a3b (patch) | |
tree | ce4479de3d927df175844bbf86877d65e7405a90 /docs/source | |
parent | 23caf305f28d1e8baf5196703ac316cfe4e740dc (diff) | |
download | mediagoblin-438dd8cd8f79f32609cce15d70ef6a93f1531a3b.tar.lz mediagoblin-438dd8cd8f79f32609cce15d70ef6a93f1531a3b.tar.xz mediagoblin-438dd8cd8f79f32609cce15d70ef6a93f1531a3b.zip |
Add a note on how to up the upload size limit
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/deploying.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/source/deploying.rst b/docs/source/deploying.rst index 70b1a6af..14b2c9cf 100644 --- a/docs/source/deploying.rst +++ b/docs/source/deploying.rst @@ -196,6 +196,9 @@ this ``nginx.conf`` file should be modeled on the following: :: # This is the section you should read ##################################### + # Change this to update the upload size limit for your users + client_max_body_size 8m; + server_name mediagoblin.example.org www.mediagoblin.example.org; access_log /var/log/nginx/mediagoblin.example.access.log; error_log /var/log/nginx/mediagoblin.example.error.log; |