Created
March 27, 2017 22:34
-
-
Save selenearzola/caa71bc3974b1f99957842b54e9048f9 to your computer and use it in GitHub Desktop.
Vhost Windows example using xampp as LAMP Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
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