如何将经过身份验证的Nginx用户映射到他们自己的目录?

我正在用C编写一个社交网站,并用Nginx提供服务.我如何才能使经过身份验证的用户访问他们自己的目录-ONLY-用户特定的index.html所在的目录.我不是问如何使用特定于用户的指令填充index.html,而是如何将它们锁定到自己的目录中

最佳答案
map $remote_user $profile_directory {
    default      $remote_user;
    ''           guests;
    pavel        admins;
    ivan         admins;
}

server {

    location /profile/ {
        alias /path/to/www/$profile_directory/;
        ...
    }

}

> http://nginx.org/en/docs/http/ngx_http_core_module.html#variables
> http://nginx.org/r/map
> http://nginx.org/r/alias
> http://nginx.org/r/root
> http://nginx.org/r/location

第二个例子(见评论):

server {
    location / {
        auth_basic            "Please Login";
        auth_basic_user_file  "/etc/nginx/htpasswd";
        root /var/www/sites/mysite.com/http/$remote_user;
    }
}

相关文章

Nginx (engine x) 是一个高性能的HTTP和反向代理服务,也是一...
本地项目配置 1 复制 luffy/settings/dev.py为prop.py 修改l...
nginx不仅可以隐藏版本信息,还支持自定义web服务器信息 先看...
一 、此次漏洞分析 1 nginx HTTP/2漏洞 [nginx-announce] ng...
###进入nginx 目录cd /usr/local/nginx###递归显示 2 级目录...
在cmd命令窗口输入下面命令进行查看 tasklist /fi "ima...