2bfe5ff Use httpd 2.4 syntax for access control

1 file Authored by cheimes 3 years ago, Committed by rcritten 3 years ago,
    Use httpd 2.4 syntax for access control
    
    The httpd options Allow, Deny, Order, and Satisfy are deprecated in
    Apache httpd 2.4. These options are provided by the mod_access_compat
    module and should no longer be used.
    
    Replace "Allow from all" with "Require all granted".
    
    Removal of "Satisfy Any" needs more investigation.
    
    See: httpd.apache.org/docs/2.4/upgrading.html
    See: httpd.apache.org/docs/2.4/mod/mod_access_compat.html
    Fixes: pagure.io/freeipa/issue/8305
    Signed-off-by: Christian Heimes <cheimes@redhat.com>
    Reviewed-By: Rob Crittenden <rcritten@redhat.com>