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

前端之家收集整理的这篇文章主要介绍了如何将经过身份验证的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;
    }
}
原文链接:https://www.f2er.com/nginx/435580.html

猜你在找的Nginx相关文章