Linux centos7下 Nginx静态资源服务器搭建

转载原文

修改nginx.conf文件,在server{}模块中添加 location /public/img/部分配置代码。root:指定静态资源目录,autoindex on:打开目录浏览功能。

    server {
        listen 80;
        server_name localhost;
 		root html;
 		index index.html index.htm;
        location / {
            root   html;
            index  index.html index.htm;
       	} 		
        location /public/img/ {
            root /home/itency/resourse/;
            autoindex on;
        }		
     }

图片存放路径/home/itency/resource/public/img( 为root 和 location 路径组合)
在浏览器输入url:port/public/img/logo-icon3.png
192.168.1.110/public/img/logo-icon3.png

你可能感兴趣的:(Nginx)