码迷,mamicode.com
首页 > Web开发 > 详细

ngx_http_auth_request_module 第三方认证

时间:2018-02-27 16:00:29      阅读:1299      评论:0      收藏:0      [点我收藏+]

标签:ret   class   mod   usr   set   author   gpo   服务器   $_server   

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 第三方认证

标签:ret   class   mod   usr   set   author   gpo   服务器   $_server   

原文地址:https://www.cnblogs.com/php12-cn/p/8479014.html

(1)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!