-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create running_behind_nginx_reverse_proxy.md
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
docs/e-mission-server/running_behind_nginx_reverse_proxy.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Running Behind NGINX Reverse Proxy | ||
|
||
### Ramp up the body size limit | ||
|
||
You must make sure that, NGINX can accept a very large request (i.e. 1GB). | ||
|
||
So either add this to your `server` block or `http` block: | ||
|
||
```nginx | ||
client_max_body_size 1G; | ||
``` | ||
|
||
Also, you must make sure that this configuration is conform with | ||
|
||
`e-mission-server/net/api/cfc_webapp.py` file. | ||
|
||
```python | ||
BaseRequest.MEMFILE_MAX = 1024 * 1024 * 1024 # Allow the request size to be 1G | ||
``` |