Skip to content

Instantly share code, notes, and snippets.

@michaeljymsgutierrez
Last active January 7, 2020 10:22
Show Gist options
  • Save michaeljymsgutierrez/9327766abb1c13717eeae8783111d360 to your computer and use it in GitHub Desktop.
Save michaeljymsgutierrez/9327766abb1c13717eeae8783111d360 to your computer and use it in GitHub Desktop.
VHost Configuration Example
<VirtualHost *:80>
ServerName site.local
DocumentRoot /var/www/html/project/app
Header set Access-Control-Allow-Origin "*"
<Directory /var/www/html/project/app/>
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment