Skip to content

Instantly share code, notes, and snippets.

@zhjuncai
Last active December 20, 2015 07:39
Show Gist options
  • Save zhjuncai/6094732 to your computer and use it in GitHub Desktop.
Save zhjuncai/6094732 to your computer and use it in GitHub Desktop.
Virtual Host configuration
<VirtualHost *:80>
ServerAdmin email@gmail.com
ServerName project.local
DocumentRoot /home/uname/Documents/GitProj
<Directory /home/uname/Documents/GitProj/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/project-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel debug
CustomLog ${APACHE_LOG_DIR}/project-access.log combined
Alias /project "/home/uname/Documents/GitProj/project"
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment