Skip to content

Instantly share code, notes, and snippets.

@selenearzola
Created March 27, 2017 22:34
Show Gist options
  • Save selenearzola/caa71bc3974b1f99957842b54e9048f9 to your computer and use it in GitHub Desktop.
Save selenearzola/caa71bc3974b1f99957842b54e9048f9 to your computer and use it in GitHub Desktop.
Vhost Windows example using xampp as LAMP Server
<VirtualHost *:80>
ServerAdmin admin@localhost.com
DocumentRoot "C:\xampp\htdocs\project-folder\public"
ServerName local.project-folder.com
ServerAlias local.project-folder.com
<Directory "C:\xampp\htdocs\project-folder">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment