mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
added size limit of 100MB for http and https requests (#5606)
This commit is contained in:
parent
64dfdbd6b0
commit
264e5dc343
1 changed files with 2 additions and 0 deletions
|
|
@ -52,6 +52,7 @@ http
|
|||
server
|
||||
{
|
||||
listen 443 ssl;
|
||||
client_max_body_size 100M;
|
||||
ssl_certificate_by_lua_block
|
||||
{
|
||||
auto_ssl:ssl_certificate()
|
||||
|
|
@ -99,6 +100,7 @@ http
|
|||
server
|
||||
{
|
||||
listen 80;
|
||||
client_max_body_size 100M;
|
||||
location /.well-known/acme-challenge/
|
||||
{
|
||||
content_by_lua_block
|
||||
|
|
|
|||
Loading…
Reference in a new issue