插件窝 干货文章 nginx如何配置多目录

nginx如何配置多目录

配置 location 目录 server 997    来源:    2025-04-05

Nginx 多目录配置指南

Nginx 可以通过多种方式配置多个目录,以下是几种常见场景的配置方法:

1. 基本多目录配置

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;
    }
}

2. 使用 root 指令配置

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/
    }
}

3. 多个虚拟主机配置不同目录

# 第一个虚拟主机
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;
}

4. 动态目录配置

server {
    listen 80;
    server_name example.com;

    # 使用正则表达式匹配动态目录
    location ~ ^/user/([^/]+)/files {
        alias /home/$1/public_files;
        # 例如访问 /user/john/files 会映射到 /home/john/public_files
    }
}

5. 带访问控制的目录配置

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;
    }
}

注意事项

  1. rootalias 的区别:

    • root 会将 location 的 URI 附加到路径后
    • alias 会直接替换 location 的 URI
  2. 路径末尾的斜杠:

    • 使用 alias 时,location 和 alias 路径都应该以斜杠结尾或都不以斜杠结尾
    • 例如:location /images/ 对应 alias /path/to/images/
  3. 权限问题:

    • 确保 Nginx 工作进程有权限访问配置的目录
    • 使用 chownchmod 设置正确的权限
  4. 配置测试:

    • 修改配置后运行 nginx -t 测试配置是否正确
    • 然后使用 nginx -s reload 重新加载配置

希望这些配置示例能帮助您实现 Nginx 的多目录配置需求。根据您的具体场景选择合适的配置方式。