nginx之静态资源映射

主要应用场景:
访问nginx不同目录下的静态资源。

核心配置代码:

1
2
3
4
location /img/ {
alias /home/software/nginx/html/img/;
autoindex on;
}

文章目录