Hi Eric and All,

> On 31 Mar 2019, at 18:53, Eric Covener <cove...@gmail.com> wrote:
> 
> In 2.4 it would be surrounding the two requires with <requireall>

Yes… that’s it. Thanks so much.

The config that works is now:

<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);"

    <RequireAll>
      Require ssl
      Require dbd-group user
    </RequireAll>
</Directory>

Cheers,
Richard

Reply via email to