nginx作为静态资源服务器的配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx作为静态资源服务器的配置相关的知识,希望对你有一定的参考价值。
在http模块添加:
server {
listen 80;
server_name localhost;
location /www/ {
root /data/;
index index.html index.htm;
}
location /image/ {
root /data/;
autoindex on;
}
}
创建目录,拷贝文件
mkdir -p /data/www
mkdir /data/image
cp yellow.jpg /data/image
cp index.html /data/www
nginx -s reload
浏览器访问:
http://localhost/www/index.html
http://localhost/image/yellow.jpg
以上是关于nginx作为静态资源服务器的配置的主要内容,如果未能解决你的问题,请参考以下文章
linux下配置nginx使用ftp目录作为静态资源文件的目标目录