Skip to content

Commit

Permalink
/profile: client_body_buffer_size 5000k
Browse files Browse the repository at this point in the history
  • Loading branch information
sorah committed Oct 22, 2017
1 parent bf3eef7 commit dcfd356
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion nginx.conf
Expand Up @@ -49,7 +49,7 @@ http {

proxy_buffers 100 32k;
proxy_buffer_size 8k;
client_body_buffer_size 8k;
client_body_buffer_size 16k;

client_max_body_size 20M;

Expand Down Expand Up @@ -89,6 +89,11 @@ http {
location / {
proxy_pass http://app;
}
location /profile {
client_body_buffer_size 5000k;
proxy_pass http://app;
}


location /icons {
add_header Cache-Control "public, max-age=86400";
Expand Down Expand Up @@ -127,6 +132,7 @@ http {
proxy_pass http://isuone;
}
location /profile {
client_body_buffer_size 5000k;
proxy_pass http://isuone;
}
location /fetch {
Expand Down

0 comments on commit dcfd356

Please sign in to comment.