[audiobookshelf] Upload of files is not possible

My YunoHost server

Hardware: Dedicated AMD ryzon computer with Proxmox. yunohost runs as a VM
YunoHost version: 11.2.10
I have access to my server : Through SSH | through the webadmin | direct access via keyboard / screen |
Are you in a special context or did you perform some particular tweaking on your YunoHost instance ? : no
If your request is related to an app, specify its name and version: Audiobookshelf v2.7.2

Description of my issue

I am currently trying to upload some audio files to the Audiobookshelf application. The error I get is

<html>

<head><title>413 Request Entity Too Large</title></head>

<body>

<center><h1>413 Request Entity Too Large</h1></center>

<hr><center>nginx</center>

</body>

</html>

I checked the nginx configuration file and it shows at text /etc/nginx/conf.d/audiobookshelf.<mydomain.tld>.d/audiobookshelf.conf

It says that the upload limit is set to 10G

#sub_path_only rewrite ^/$ / permanent;
location / {

  proxy_pass http://127.0.0.1:8096;
  proxy_redirect    off;
  proxy_set_header  Host $host;
  proxy_set_header  X-Real-IP $remote_addr;
  proxy_set_header  X-Forwarded-Proto $scheme;
  proxy_set_header  X-Forwarded-Port $server_port;
  proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header  X-Forwarded-Host $server_name;
        
  proxy_pass_request_headers on;

  #WebSocket Support
  proxy_http_version 1.1;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection $http_connection;

  client_max_body_size 10G;

  # Include SSOWAT user panel.
  include conf.d/yunohost_panel.conf.inc;
}

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.