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プロトコル- 基本認証番号HTTPd- 基本認証です。

検索する必要がありますHTTPプロトコル文書はそうではありません。HTTPd一つ。

HTTP 基本認証は次に定義されます。RFC7617しかし、おそらく次のように始めることができます。ウィキペディアページ

明らかに、Apache HTTPdはhttp-basic-authをサポートしています。 Apacheの実装の詳細は以下で確認できます。ここ

おすすめ記事