Skip to content

Commit

Permalink
[cicd]nginx 프록시 버퍼 확장
Browse files Browse the repository at this point in the history
  • Loading branch information
kmw2378 committed Jun 29, 2024
1 parent 204456c commit d29ae20
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ http {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;

# 프록시 버퍼 확장
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
}
location = /favicon.ico {
return 204;
Expand Down

0 comments on commit d29ae20

Please sign in to comment.