1
0
Fork 0
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:
Joshua Merrell 2018-01-24 19:43:05 -08:00
parent ec1a8bac1f
commit 38682162b2
3 changed files with 15 additions and 12 deletions

View file

@ -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;
}