server {
listen 80; //监听端口号
server_name localhost;// 域名
location / { //表示拦截:server_name/ip+listen
root html;//指定html文件夹为根目录(一般为: nginx/html),是相对目录
index index.html index.htm;//访问主页,根目录下的index.html或index.htm文件。
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
Location:
再讲下上面的location 举个例子:
location / { //访问 localhost:80时,实际为 localhost:80/image/,这里的image是相对目录(nginx/image)
root image;
access_log logs/moniter.log main; // localhost:80/image/路径下的访问日志保存在nginx/logs/image.log中
}
location /image { //访问 localhost:80/image时,实际为 localhost:80/image/,这里的image是相对目录(nginx/image)
root image;
}
location /image {
//访问 localhost:80/image时,实际为 localhost:80/image/,这里的image是绝对对目录(/image),此时必须要在nginx目录下建一个image文件夹,实际访问的是/image下不是nginx/image,但是nginx下有个image与之对应
root /image;
}
error_page:
error_page 500 502 503 504 /50x.html;
//出现 500 502 503 504错误时跳到50x.html文件,50x.html在哪呢?看下面的root设置根目录为html(相对目录:nginx/html), /50x.html表示在nginx/html/50x.html
location = /50x.html {
root html;
}