On Sun, Mar 31, 2019 at 10:05 AM Richard70nl <rich...@richard70.nl> wrote:
>
> Dear all,
>
> I’m trying to figure out how I can give access to documents by combining SSL 
> and basic user authentication. The following is from my httpd config:
>
> <Directory "${WEBAPPS_ROOT}/test/user">
>     AllowOverride None
>     Options None
>
>     AuthType Basic
>     AuthName "Test User"
>     AuthBasicProvider dbd
>     AuthDBDUserPWQuery "select human.get_user_password(%s);"
>     AuthzDBDQuery "select human.get_user_groups(%s);"
>
>     Require ssl
>     Require dbd-group user
> </Directory>
>

In 2.4 it would be surrounding the two requires with <requireall>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to