Nginx应用之静态资源服务器

Nginx作静态资源服务器

静态资源准备

假设现在有一个静态资源文件夹blog,将文件夹blog放在nginx安装目录中的sbin同级目录下

修改配置文件

修改conf目录中的nginx.conf文件

1
2
3
4
5
6
location /{
alias blog/;
index index.html;
autoindex on;
charset utf-8;
}

说明:

aliasroot作用相同,都是用来指定资源跟路径

index 设置默认的访问首页

autoindex 选项为on时可以让用户浏览对应目录下所有的资源内容,如果浏览时想要下载,在http段加上default_type application/octet-stream; 如果想要查看内容,加上default_type text/plain;

重启nginx服务

进入到sbin目录下,使用命令 ./nginx -c /xxx/nginx.conf -s reload 重启nginx服务

Author: Aaron
Link: https://xjsir.cn/2022/11/12/Nginx作静态资源服务器/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.