Set the springboot max file size.
This commit is contained in:
parent
6fda12121e
commit
dbb4fb8789
|
@ -113,3 +113,7 @@ shinyproxy_oidc_use_roles_claim: True
|
||||||
shinyproxy_oidc_roles_claim: 'groups'
|
shinyproxy_oidc_roles_claim: 'groups'
|
||||||
|
|
||||||
shinyproxy_max_log_size: 20MB
|
shinyproxy_max_log_size: 20MB
|
||||||
|
|
||||||
|
# Springboot options
|
||||||
|
shinyproxy_max_file_size: 10MB
|
||||||
|
shinyproxy_max_request_size: "{{ shinyproxy_max_file_size }}"
|
||||||
|
|
|
@ -192,6 +192,10 @@ management:
|
||||||
spring:
|
spring:
|
||||||
application:
|
application:
|
||||||
name: "{{ shinyproxy_spring_name }}"
|
name: "{{ shinyproxy_spring_name }}"
|
||||||
|
servlet:
|
||||||
|
multipart:
|
||||||
|
max-file-size: {{ shinyproxy_max_file_size }}
|
||||||
|
max-request-size: {{ shinyproxy_max_request_size }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
logging:
|
logging:
|
||||||
|
|
Loading…
Reference in New Issue