Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/e-mission-server/running_behind_nginx_reverse_proxy.md
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
```