Skip to content

Instantly share code, notes, and snippets.

@alexshive
Created August 23, 2013 16:44
Show Gist options
  • Select an option

  • Save alexshive/6321444 to your computer and use it in GitHub Desktop.

Select an option

Save alexshive/6321444 to your computer and use it in GitHub Desktop.
Virtual host configuration for a local domain
<VirtualHost *:80>
DocumentRoot "/Users/alexshive/Sites/wordpress/"
ServerName wordpress
ServerAlias wordpress
<Directory "/Users/alexshive/Sites/wordpress/">
Options FollowSymLinks
AllowOverride All
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