Nginx 可以通过多种方式配置多个目录,以下是几种常见场景的配置方法:
server {
listen 80;
server_name example.com;
# 第一个目录
location /dir1 {
alias /path/to/directory1;
index index.html;
}
# 第二个目录
location /dir2 {
alias /path/to/directory2;
index index.html;
}
}
server {
listen 80;
server_name example.com;
# 主目录
root /var/www/html;
# 子目录1
location /subdir1/ {
root /var/www/other;
# 实际路径会是 /var/www/other/subdir1/
}
# 子目录2
location /subdir2/ {
alias /var/www/custom/path/;
# 注意alias后面要有/,实际路径直接映射到/var/www/custom/path/
}
}
# 第一个虚拟主机
server {
listen 80;
server_name site1.example.com;
root /var/www/site1;
index index.html;
}
# 第二个虚拟主机
server {
listen 80;
server_name site2.example.com;
root /var/www/site2;
index index.html;
}
server {
listen 80;
server_name example.com;
# 使用正则表达式匹配动态目录
location ~ ^/user/([^/]+)/files {
alias /home/$1/public_files;
# 例如访问 /user/john/files 会映射到 /home/john/public_files
}
}
server {
listen 80;
server_name example.com;
location /public/ {
alias /var/www/public/;
allow all;
}
location /private/ {
alias /var/www/private/;
auth_basic "Restricted Area";
auth_basic_user_file /etc/nginx/.htpasswd;
}
}
root
和 alias
的区别:
root
会将 location 的 URI 附加到路径后alias
会直接替换 location 的 URI路径末尾的斜杠:
alias
时,location 和 alias 路径都应该以斜杠结尾或都不以斜杠结尾location /images/
对应 alias /path/to/images/
权限问题:
chown
和 chmod
设置正确的权限配置测试:
nginx -t
测试配置是否正确nginx -s reload
重新加载配置希望这些配置示例能帮助您实现 Nginx 的多目录配置需求。根据您的具体场景选择合适的配置方式。