kyler
(Kyler Boudreau)
2015 年 8 月 6 日午後 6:29
1
Hey, I’m trying to increase the max file upload size on my site. I edited my config file per the instructions here:
https://meta.discourse.org/t/changing-max-attachment-size/26435
I rebuilt the app and then my discourse went down. So I removed the lines and rebooted the server. Back up now, but still now sure on how to do this.
Can someone tell me exactly what file to edit? I had Discourse.org install my forum on a Digital Ocean droplet, so everything is standard. Thanks!
You can SSH into discourse while you’re SSH’ed into your Droplet. From there, you could nano /etc/nginx/conf.d/discourse.conf and edit the file directly.
Or I guess you could also copy the file from inside discourse to your host server,
$ scp discourseIP:/etc/nginx/conf.d/discourse.conf ~/discourse.conf
edit the file, and then scp it back into the discourse container.
$ scp ~/discourse.conf discourseIP:/etc/nginx/conf.d/discourse.conf
Either way, once you’ve edited the file, you would have to tell the contained instance of nginx to reload its configuration, like so:
$ docker exec discourse nginx -s reload
#Update
It turns out that there’s a parameter for it in the *.yml configuration. Just add upload_size: 5000M.
Source: Change the maximum attachment/upload size
diogocsc
(Diogocsc)
2018 年 7 月 20 日午後 10:07
3
how do we know the ip of the discourse ?
sam
(Sam Saffron)
2018 年 7 月 23 日午前 12:39
5
This is all documented in this howto:
This guide explains how to change the maximum attachment upload size for self-hosted Discourse instances.
Required user level: System Admin
The default attachment upload size limit is 10MB
If you are self-hosting Discourse and need to allow uploads larger than 10 MB, follow the steps below.
Changing the upload size
Connect to your server:
Use SSH to access your server’s command line interface.
Edit the configuration file:
Navigate to the configurati…