ngx_http_auth_request_module 第三方认证

Posted 狂猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ngx_http_auth_request_module 第三方认证相关的知识,希望对你有一定的参考价值。

shell > vim /usr/local/nginx-1.10.2/conf/vhost/auth.conf  # 这是第三方认证服务器,认证逻辑使用的 php 代码

server {
    listen       80;
    server_name  auth.server.com;

    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /usr/local/nginx-1.10.2/html$fastcgi_script_name;
        include        fastcgi_params;
    }
}

shell > vim /usr/local/nginx-1.10.2/html/HttpBasicAuthenticate.php

<?php

if(isset($_SERVER[‘PHP_AUTH_USER‘], $_SERVER[‘PHP_AUTH_PW‘])){
    $username = $_SERVER[‘PHP_AUTH_USER‘];
    $password = $_SERVER[‘PHP_AUTH_PW‘];

    if ($username == ‘wang‘ && $password == ‘123456‘){
        return true;
    }
}

header(‘WWW-Authenticate: Basic realm="Git Server"‘);
header(‘HTTP/1.0 401 Unauthorized‘);

?>

以上是关于ngx_http_auth_request_module 第三方认证的主要内容,如果未能解决你的问题,请参考以下文章