Created
March 17, 2013 18:52
-
-
Save danhper/5183036 to your computer and use it in GitHub Desktop.
httpd-vhosts.conf
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
NameVirtualHost *:80 | |
<VirtualHost *:80> | |
<Directory "E:/Documents/blog"> | |
Require all granted | |
</Directory> | |
DocumentRoot "E:/Documents/blog" | |
ServerName localhost | |
DirectoryIndex index.html | |
ErrorLog "logs/localhost-error.log" | |
CustomLog "logs/localhost-access.log" combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment