目录

nginx

目录

主进程是master,worker进程处理请求

nginx.conf文件核心配置

worker_processes 1; // worker进程的个数

events {
	worker_connection 1024; // 每个worker进程可以有多少个连接。
}

http {
	include mine.types; // 可以引入其他配置文件,相对、绝对路径都可以
	defautl_type application/octet-stream; // 默认支持的mime类型
	sendfile on;
	keepalive_timeout 65;
	server{ // 虚拟主机
 		listen 80;
 		server_name localhost; // 域名或主机名
  		location / {
   			root html;
   			index index.hmtl;
  		}	
  		error_page 500 502 503 504 /50X.html;
 		location = /50x.html {
   			root html;
  		}
 	}
}