Re: I need help with our NGINX set up

2024-04-30 Thread zen zenitram
We dont use PHP, our system use perl cgi. So the problem is in cgi? On Wed, May 1, 2024, 8:57 AM Dan Swaney wrote: > The clue is with the URL which failed. > > From first look, you appear to be using a FAST CGI URL with PHP? > > Just a wild guess, but try using: > ``` > > fastcgi_param PHP_VAL

Re: I need help with our NGINX set up

2024-04-30 Thread Dan Swaney
The clue is with the URL which failed. >From first look, you appear to be using a FAST CGI URL with PHP? Just a wild guess, but try using: ``` fastcgi_param PHP_VALUE "upload_max_filesize = 500M \n post_max_size=500M" ``` Here is a reference link mentioning it: https://serverfault.com/a/704209

RE: I need help with our NGINX set up

2024-04-19 Thread Reinis Rozitis via nginx
> It only accepts maximum of 128 kb of data, but the client_max_body_size > 500M;. Is there a way to locate the cause of error. Can you actually show what the "error" looks like? The default value of client_max_body_size is 1M so the 128Kb limit most likely comes from the backend application o

I need help with our NGINX set up

2024-04-19 Thread zen zenitram
Good day! We have an Institutional Repository server that uses NGINX as load balancer but we encountered problem when trying to upload documents to the repository. It only accepts maximum of 128 kb of data, but the client_max_body_size 500M;. Is there a way to locate the cause of error. Here are