commands write with the same switch

This commit is contained in:
Ville Rantanen
2018-02-18 17:28:51 +02:00
parent f16ec3eeb4
commit 7dce698bae
3 changed files with 22 additions and 20 deletions

View File

@@ -22,7 +22,7 @@ The name comes from mispronouncing "files" very badly.
- workers = parallel processes (i.e. one upload reserves a process)
- timeout = timeout for processes, single upload might take a long time!
- configure bind host and port in .env
- proxy with nginx:
- proxy with nginx, match body size and timeout to your needs:
```
location /flees/ {
proxy_pass http://localhost:8136/;
@@ -31,6 +31,7 @@ location /flees/ {
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Script-Name /flees;
client_max_body_size 8G;
client_body_timeout 240s;
}
```