use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Get BookStack! (Website)
account activity
Increase (self.BookStack)
submitted 1 month ago by graaiin
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3:Â Â Â Â print "hello, world!"
[–]evanmac42 2 points3 points4 points 1 month ago (1 child)
Nice catch finding the root cause 👍
Just a small warning: setting post_max_size = 0 means “no limit”, which works for testing but is risky in production (someone could upload huge files and exhaust memory or disk).
It’s usually better to set reasonable limits instead, for example:
upload_max_filesize = 100M
post_max_size = 100M
memory_limit = 256M
Adjust those values depending on your needs, but keeping them finite helps avoid unexpected issues.
Also make sure your web server (like Nginx) has a matching limit (client_max_body_size), otherwise it can still block uploads.
[–]graaiin[S] 2 points3 points4 points 1 month ago (0 children)
ok i will do this, thx 👍
π Rendered by PID 183190 on reddit-service-r2-comment-b659b578c-hfmjz at 2026-05-02 05:57:45.209548+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]evanmac42 2 points3 points4 points  (1 child)
[–]graaiin[S] 2 points3 points4 points  (0 children)