apache http-basic-auth [fechado]

0

alguém pode me dizer o que é 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';

Eu não vejo isso aqui

    
por yesOrMaybeWhatever 10.07.2018 / 11:06

1 resposta

1

Diz HTTP -basic-auth não HTTPd -basic-auth.

Você precisa pesquisar a documentação HTTP não HTTPd um.

A autenticação básica HTTP é definida em RFC7617 mas, provavelmente, você pode começar com o página da wikipedia .

Obviamente, o Apache HTTPd suporta http-basic-auth. Você pode encontrar detalhes de implementação do Apache aqui

    
por 10.07.2018 / 11:18