mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-18 16:48:28 +02:00
chore(docs): add client_max_body_size in nginx example
This commit is contained in:
parent
dd87268848
commit
8fdeeaaf38
1 changed files with 5 additions and 0 deletions
|
@ -114,6 +114,11 @@ server
|
||||||
|
|
||||||
proxy_pass http://<URL_to_forward_to>;
|
proxy_pass http://<URL_to_forward_to>;
|
||||||
proxy_redirect http:// https://;
|
proxy_redirect http:// https://;
|
||||||
|
|
||||||
|
# Prevent 413 Request Entity Too Large error
|
||||||
|
# by increasing the maximum allowed size of the client request body
|
||||||
|
# For example, set it to 10 GiB
|
||||||
|
client_max_body_size 10240M;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue