logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Migrating to mod_authz on Apache 2.4
Author
20160413



Joined: 13 Apr 2016
Posts: 28

PostPosted: Thu 11 Oct '18 17:53    Post subject: Migrating to mod_authz on Apache 2.4 Reply with quote

I am obviously not an Apache master.

I have the following in my Vhost which is/was probablx a standard thing to have:

Code:

      <Directory /path/to/root/>
         Options FollowSymLinks MultiViews
         AllowOverride None
         Order allow,deny
         Allow from all
      </Directory>


So now how does this translate into the new syntax? From reading http://httpd.apache.org/docs/2.4/mod/mod_authz_core.html I am not sure what to do.

Code:

      <Directory /path/to/root/>
         Options FollowSymLinks MultiViews
         AllowOverride None
         Require all granted
      </Directory>


Might this be the new syntax?
Back to top
glsmith
Moderator


Joined: 16 Oct 2007
Posts: 2268
Location: Sun Diego, USA

PostPosted: Thu 11 Oct '18 18:42    Post subject: Re: Migrating to mod_authz on Apache 2.4 Reply with quote

20160413 wrote:

Code:

      <Directory /path/to/root/>
         Options FollowSymLinks MultiViews
         AllowOverride None
         Require all granted
      </Directory>


Might this be the new syntax?

Yes
Back to top


Reply to topic   Topic: Migrating to mod_authz on Apache 2.4 View previous topic :: View next topic
Post new topic   Forum Index -> Apache