Skip to content

Instantly share code, notes, and snippets.

@brunurd
Created October 26, 2019 03:15
Show Gist options
  • Save brunurd/cba28487ee5f400f101b95f1a9376a82 to your computer and use it in GitHub Desktop.
Save brunurd/cba28487ee5f400f101b95f1a9376a82 to your computer and use it in GitHub Desktop.
apache vhost example
<VirtualHost *:80>
DocumentRoot "files\path\here"
ServerName url.here.com
ServerAlias www.url.here.com
<Directory "files\path\here">
Require all granted
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
<Files "php-cgi.exe">
Allow from all
</Files>
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment