我使用 ngx_http_auth_pam_module 构建了 Nginx,并编辑了 Nginx 配置,/etc/pam.d/nginx
如下所示
部分虚拟主机设置
location / {
root /projects/admin;
index index.html index.htm;
auth_pam "Google Authenticator Code Required";
auth_pam_service_name "nginx";
}
/etc/pam.d/nginx
auth required pam_google_authenticator.so
为什么我无法通过 Google Authenticator 授权?请帮帮我。