nginx学习:nginx提供静态资源服务

Posted Kevin-养码青年

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx学习:nginx提供静态资源服务相关的知识,希望对你有一定的参考价值。

准备工作

这里准备了一个文件夹,里面放入了一个img文件夹和index.html文件,将文件上传到home下。

配置nginx

这里我们从新起个端口

   server {
        listen       90;
        server_name  localhost;



        location / {
            root   /home/static_kevin;
            index  index.html;
        }


        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
     }
}


注意
这里访问的时候,是访问 /home/static_kevin 然后再加上你输入的地址

验证

使用alias 配置

        location /kevin {
            alias   /home/static_kevin;

        }

这里直接访问 /home/static_kevin/下面的内容

location 的匹配规则

  • 空格:默认匹配,普通匹配
location / {
     root /home;
}
  • =:精确匹配
location = /imooc/img/face1.png {
    root /home;
}
  • ~*:匹配正则表达式,不区分大小写
#符合图片的显示
location ~* \\.(GIF|jpg|png|jpeg) {
    root /home;
}
  • ~:匹配正则表达式,区分大小写
#GIF必须大写才能匹配到
location ~ \\.(GIF|jpg|png|jpeg) {
    root /home;
}
  • ^~:以某个字符路径开头
location ^~ /imooc/img {
    root /home;
}

以上是关于nginx学习:nginx提供静态资源服务的主要内容,如果未能解决你的问题,请参考以下文章

Linux nginx

Nginx修改静态文件访问路径

CentOS6.7使用nginx提供静态资源服务,反向代理和负载均衡

Nginx学习历程

Nginx 架构和基础原理

Nginx 架构和基础原理