ngnix 映射路径配置_nginx做本地目录映射
时间: 2023-09-21 07:07:36 浏览: 93
nginx 映射本地文件
在 nginx 中,可以通过配置映射路径来实现本地目录的映射。以下是一个简单的示例配置:
```
server {
listen 80;
server_name example.com;
location / {
root /var/www/example.com;
index index.html;
}
location /images/ {
alias /var/www/example.com/images/;
}
}
```
这个配置中,`/var/www/example.com` 是网站的根目录,访问 `/` 路径时会自动寻找根目录下的 `index.html` 文件并返回。
而当访问 `/images/` 路径时,会将请求映射到本地目录 `/var/www/example.com/images/`。
注意,使用 `alias` 时需要注意斜杠的写法,例如 `/images/` 后面要加上斜杠,否则可能会映射失败。
阅读全文