IT_Server/Web_Server & WAS

[펌][NGINX] nginx.conf 파일 설정

JJun ™ 2013. 5. 24. 13:44


 출처: http://blog.pearljam.co.kr/4715/




nginx.conf 파일의 내용에 대한 설명입니다.

주석표시(# 부분만 설정 하시면 됩니다)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
user www-data;    
worker_processes  4; #서버의 cpu 코어 갯수
 
error_log  /var/log/nginx/error.log; #에러로그 파일 설정
pid        /var/run/nginx.pid;
 
events {
    worker_connections  1024; #worker_processes 한개당 처리할수 있는 연결 갯수(곱하기 4=동시접속가능수)
    }
 
http {
	include       /etc/nginx/mime.types; 
	access_log	off; #서버 처리를 조금이라도 향상시키기 위해 off 했습니다.
	default_type application/octet-stream;
 
	sendfile        on;
    	tcp_nopush     on;
    	client_body_timeout 10;
	client_header_timeout 10;
	send_timeout 10;
	keepalive_timeout 15;
	keepalive_requests 20000;
 
	client_body_buffer_size 8k;
        client_header_buffer_size 1k;
        client_max_body_size 5M;
        large_client_header_buffers 1 1k;
 
	tcp_nodelay        on;
 
	gzip  on;
	gzip_disable "MSIE [1-6]\.(?!.*SV1)";
 
	include /etc/nginx/conf.d/*.conf;
	include /etc/nginx/sites-enabled/*;
 
### 여기 부터 호스트 설정입니다. server {} 가 하나의 도메인,사이트가 되겠습니다.
server {
	listen 10.0.0.133:80;
	server_name www.example.com;
 
	root /var/www/nginx-default;     #루트 디렉토리 설정
	index index.php index.html index.htm;   #인덱스 파일 설정
        client_max_body_size 100M;   #최대 업로드 가능한 파일 사이트 설정
#	access_log /var/log/nginx/example.access.log;  #사이트별 개별 로그파일 설정 가능
#	error_log /var/log/nginx/example.error.log;
 
	location / { 
		try_files $uri $uri/ /index.php; 
	}
 
	location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
		expires max;
		add_header Pragma public;
		add_header Cache-Control "public, must-revalidate, proxy-revalidate";
	}
 
	include php.conf;
 	include fastcgi_params;
}
#### 여기까지가 하나의 사이트 설정.
 
}