Nginx

Nginx 설치

ZzangHo 2022. 1. 27. 11:21
728x90

설치

[root@hostname conf.d]# vi /etc/yum.repos.d/nginx.repo

 

[nginx.repo]

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1

 

yum install 실행

[root@hostname conf.d]# yum install nginx

 

413 client intended to send too large body 오류 날 때

nginx body size 제한 (기본값 1m)

 

[nginx.conf]

client_max_body_size 100M;

'Nginx' 카테고리의 다른 글

Nginx 성능 튜닝  (0) 2022.01.27
로드밸런싱 설정  (0) 2022.01.27