Skip to content

Instantly share code, notes, and snippets.

@sblmasta
Forked from diegoe/httpd-vhosts.conf
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sblmasta/a48ec5ffc434120a3874 to your computer and use it in GitHub Desktop.
Save sblmasta/a48ec5ffc434120a3874 to your computer and use it in GitHub Desktop.
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin webmaster@zencode.pl
DocumentRoot "/Users/sbl/www"
ServerName localhost
ServerAlias localhost
ErrorLog "/Users/sbl/www/logs/error.log"
CustomLog "/Users/sbl/www/logs/access.log" common
<Directory /Users/sbl/www>
Options Indexes FollowSymLinks MultiViews
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