Nginx作静态资源服务器
静态资源准备
假设现在有一个静态资源文件夹blog,将文件夹blog放在nginx安装目录中的sbin同级目录下
修改配置文件
修改conf目录中的nginx.conf文件
1 | location /{ |
说明:
alias
与root
作用相同,都是用来指定资源跟路径
index
设置默认的访问首页
autoindex
选项为on
时可以让用户浏览对应目录下所有的资源内容,如果浏览时想要下载,在http
段加上default_type application/octet-stream;
如果想要查看内容,加上default_type text/plain;
重启nginx服务
进入到sbin
目录下,使用命令 ./nginx -c /xxx/nginx.conf -s reload
重启nginx服务