Nginx 上的 Google 身份验证器

Nginx 上的 Google 身份验证器

我使用 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 授权?请帮帮我。

相关内容