Skip to content

Instantly share code, notes, and snippets.

@filippotoso
Created June 22, 2019 22:20
Show Gist options
  • Save filippotoso/aea9e044ee8250f5cdac2e6bd475d776 to your computer and use it in GitHub Desktop.
Save filippotoso/aea9e044ee8250f5cdac2e6bd475d776 to your computer and use it in GitHub Desktop.
Virtual Host configuration
<VirtualHost *:80>
DocumentRoot "D:/Projects/<project>/public_html"
ServerName <project>.local
ServerAlias <project>.local
<Directory "D:/Projects/<project>/public_html">
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