-
Notifications
You must be signed in to change notification settings - Fork 12
LargeNotebooksSupport
mrogalski edited this page Aug 21, 2018
·
2 revisions
By default gist-services support forking of notebooks of total size (notebook cells and assets) up to 10MB. To increase the notebook size limit the configuration of both rcloud-gist-service
and rcloud-gistproxy-service
needs to be updated.
Add the following section to /opt/rcloud-gistproxy-service/application.yml
:
spring:
http:
multipart:
maxRequestSize: 200MB
Add the following section to /opt/rcloud-gist-service/application.yml
:
spring:
http:
multipart:
maxRequestSize: 200MB
After applying the changes both services need to be restarted.