Increase allowed upload size for studio content

This is particularly useful for courses with large SCORM content.
This commit is contained in:
Régis Behmo 2020-04-27 00:25:19 +02:00
parent 47aad68a5c
commit 1815ab138e
2 changed files with 7 additions and 3 deletions

View File

@ -2,6 +2,10 @@
Note: Breaking changes between versions are indicated by "💥".
## Unreleased
- [Improvement] Increase max upload allowed size to 250Mb in CMS
## v3.12.0 (2020-04-26)
- 💥[Improvement] Do not deploy an ingress or SSL/TLS certificate issuer ressource by default in Kubernetes

View File

@ -21,11 +21,11 @@ server {
{% endif %}
access_log /var/log/nginx/access.log tutor;
client_max_body_size 100M;
client_max_body_size 250M;
server_tokens off;
rewrite ^(.*)/favicon.ico$ /static/images/favicon.ico last;
location @proxy_to_cms_app {
{% if not WEB_PROXY %}
proxy_set_header X-Forwarded-Proto $scheme;