Skip to content

Commit

Permalink
Create running_behind_nginx_reverse_proxy.md
Browse files Browse the repository at this point in the history
  • Loading branch information
atton16 authored Jan 2, 2019
1 parent fdb31af commit 1b01245
Showing 1 changed file with 19 additions and 0 deletions.
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
```

0 comments on commit 1b01245

Please sign in to comment.