apache http-basic-auth

apache http-basic-auth

有人可以告诉我apache http-basic-auth是什么吗?

This is an example configuration for an apache ($ENV{REMOTE_USER})
# auth. backend. Use it if you want to have a singe login through
# apache http-basic-auth
$Self->{'AuthModule'} = 'Kernel::System::Auth::HTTPBasicAuth';
# Note:
#
# If you use this module, you should use as fallback
# the following configuration settings if the user is not authorized
# apache ($ENV{REMOTE_USER})
$Self->{LoginURL} = 'http://host.example.com/not-authorised-for-otrs.html';
$Self->{LogoutURL} = 'http://host.example.com/thanks-for-using-otrs.html';

我没看到这里

答案1

它说HTTP协议-basic-auth 不HTTPd-基本身份验证。

你必须搜索HTTP协议文档非HTTPd一。

HTTP 基本身份验证定义在RFC7617但是,也许,你可以从维基百科页面

显然,Apache HTTPd 支持 http-basic-auth。您可以找到 Apache 实现细节这里

相关内容