nginx 설정 학습

2254 단어
사실 학교 에서 nginx 를 사용 한 적 이 있 는데 그 때 는 간단하게 역방향 대리 분 류 를 했 을 뿐이다.어제 nginx 의 배합 파일 을 보 았 는데 이런 설정 방법 을 좋아 하 는 것 같 습 니 다. 이것 이 바로 요리 머리 가 말 하 는 코드 표현 성 (땀) 일 수도 있 습 니 다.
apache 의 전통 적 인 설정 방식 에 비해 nginx 의 설정 은 마이크로 스 크 립 트 언어 와 같 습 니 다. lua 모듈 도 있다 고 들 었 습 니 다.
예 를 들 어 apache 의 vhost 는 이 렇 습 니 다.
<VirtualHost *:80>
	ServerAdmin webmaster@localhost
	DocumentRoot /var/www/html

	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

nginx 는 이 렇 습 니 다.
server {
	listen 80 default_server;
	listen [::]:80 default_server ipv6only=on;

	root /var/www/html;
	index index.html index.htm;

	# Make site accessible from http://localhost/
	server_name localhost;

	location / {
		# First attempt to serve request as file, then
		# as directory, then fall back to displaying a 404.
		try_files $uri $uri/ =404;
		# Uncomment to enable naxsi on this location
		# include /etc/nginx/naxsi.rules
	}

	# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
	#location /RequestDenied {
	#	proxy_pass http://127.0.0.1:8080;    
	#}

	#error_page 404 /404.html;

	# redirect server error pages to the static page /50x.html
	#
	#error_page 500 502 503 504 /50x.html;
	#location = /50x.html {
	#	root /usr/share/nginx/html;
	#}

	# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
	#
	location ~ \.php$ {
		fastcgi_split_path_info ^(.+\.php)(/.+)$;
		# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
	
		# With php5-cgi alone:
		#fastcgi_pass 127.0.0.1:9000;
		# With php5-fpm:
		fastcgi_pass unix:/var/run/php5-fpm.sock;
		fastcgi_index index.php;
		include fastcgi_params;
	}

	# deny access to .htaccess files, if Apache's document root
	# concurs with nginx's one
	#
	#location ~ /\.ht {
	#	deny all;
	#}
}

분명히 nginx 의 문법 은 설정 이 아니 라 언어 에 더 가깝다. 이런 문법 은 이미 셸 과 비슷 하 다.이렇게 얻 은 직관 적 인 느낌 은 nginx 의 설정 이 함수 (사실은 모듈) 의 호출 과 같다.
여기 서 설명 하고 자 하 는 것 은 저 는 ubuntu 가 프로그램의 프로필 을 뜯 고 디 렉 터 리 구조 로 관리 하 는 방법 을 좋아 합 니 다. 이렇게 하면 centos 에 있 는 커 다란 프로필 보다 훨씬 읽 기 좋 습 니 다.
#	/etc/nginx/
#	|-- nginx.conf
#	|-- conf-enabled
#	|	`-- *
# 	`-- sites-enabled
#	 	`-- *

……

좋은 웹페이지 즐겨찾기