码迷,mamicode.com
首页 > 其他好文 > 详细

nginx作为静态资源服务器的配置

时间:2018-04-20 14:30:10      阅读:101      评论:0      收藏:0      [点我收藏+]

标签: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作为静态资源服务器的配置

标签:nginx 静态资源

原文地址:http://blog.51cto.com/xiaoxiaozhou/2105740

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!