nginx用法之静态文件详解

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;
        }
 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值