mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-27 11:26:22 -07:00
increase max upload size to ~5 MB
This commit is contained in:
parent
ec1a8bac1f
commit
38682162b2
3 changed files with 15 additions and 12 deletions
|
@ -1,10 +1,11 @@
|
|||
# pass everything to gochan via HTTP
|
||||
# this should go in /etc/nginx/sites-enabled. Change as necessary.
|
||||
#
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
client_max_body_size 5M;
|
||||
|
||||
location / {
|
||||
proxy_pass http://127.0.0.1:8080;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue