我正在使用基于Debian的主机并使用Nginx和PHP-FPM,我想在Nginx中启用用户目录,并希望多用户支持基本身份验证.这意味着Alex打开www.example.com/rutorrent;这将提示登录和密码,并在验证后,这应该指向他自己的PHP脚本版本位于/ home / alex / www / rutorrent,当Bob将打开www.example.com/rutorrent;这将提示登录和密码和身份验证后这应该指向他的PHP脚本位于/ home / bob / www / rutorrent.
我已经尝试过这里的官方文档:
http://wiki.nginx.org/UserDir
但我不确定如何将它们配置为默认文件,以便我可以获得我想要的功能,我的默认配置文件Nginx在这里:
server {
server_name localhost;
location / {
try_files $uri $uri/ /index.html;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
allow ::1;
deny all;
}
index index.PHP index.html index.htm;
location ~ ^/~([^/]*)(.*)\.PHP${
fastcgi_split_path_info ^(.+\.PHP)(/.+)$;
fastcgi_pass unix:/var/run/PHP5-fpm.sock;
auth_basic "Restricted";
auth_basic_user_file /etc/Nginx/sites-available/.htpasswd;
fastcgi_param SCRIPT_FILENAME /home/$1/www$2.PHP;
include fastcgi_params;
}
location ~ ^/~([^/]*)(.*) {
autoindex on;
alias /home/$1/www$2;
auth_basic "Restricted";
auth_basic_user_file /etc/Nginx/sites-available/.htpasswd;
}
location /RPC2 {
include scgi_params;
scgi_pass localhost:5000;
}
}
有没有办法得到这个?
最佳答案
原文链接:https://www.f2er.com/nginx/435271.html