两个地方:
1. 页面打开类型
#设定mime类型,类型由mime.type文件定义
include mime.types;
default_type application/octet-stream;
2. 默认首页
#默认请求
location / {
#定义首页索引文件的名称
index index.php index.html index.htm index.jsp;
}