Skip to content

Instantly share code, notes, and snippets.

@gaspanik
Last active August 29, 2015 14:08
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 gaspanik/5a331788ffa80cf87822 to your computer and use it in GitHub Desktop.
Save gaspanik/5a331788ffa80cf87822 to your computer and use it in GitHub Desktop.
Apache 2.4.x vhost.conf

Apache 2.4 vhost.conf on yosemite

Apache 2.2.x vhost.conf

<Directory /path/to/website.com/web>
  (...)
  Order allow,deny
  Allow from all
</Directory>
(...)

Apache 2.4.x vhost.conf

(...)
<Directory /path/to/website.com/web>
  (...)
  Require all granted
</Directory>
(...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment