diff --git a/01---Install.md b/01---Install.md index 8f05edf..9f71916 100644 --- a/01---Install.md +++ b/01---Install.md @@ -25,6 +25,7 @@ From here there are two commands that need to run to create the scripts and css server { listen 80; server_name yourcoolassdomain.com; + client_max_body_size 20M //Change to whatever to limit/increase file upload size location / { proxy_pass https://127.0.0.1:2314; proxy_http_version 1.1; @@ -43,6 +44,7 @@ server { ProxyPreserveHost On ProxyPass "/" "http://127.0.0.1:2314/" ProxyPassReverse "/" "http://127.0.0.1:2314" + LimitRequestBody 16384 ```