Skip to content

Instantly share code, notes, and snippets.

@zdravkok
Last active January 3, 2016 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zdravkok/8424638 to your computer and use it in GitHub Desktop.
Save zdravkok/8424638 to your computer and use it in GitHub Desktop.
Future proof your Apache confs
<Directory>
<IfVersion < 2.3 >
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.3>
Require all granted
</IfVersion>
</Directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment