Nginx configuration [alias]


server{

        listen 80;

        server_name localhost;

        location / {

                root  /home/img;

        }

        location /img{

                root  /home;

        }

       #使用别名访问静态资源

        location /static {

                #root  /home/img;

                alias /home/img;

        }

}

















 

Published 53 original articles · won praise 0 · Views 813

Guess you like

Origin blog.csdn.net/G971005287W/article/details/105251248