Skip to content

Instantly share code, notes, and snippets.

@grippado
Created February 24, 2015 00:58
Show Gist options
  • Save grippado/eeab77b53d8ee4322edb to your computer and use it in GitHub Desktop.
Save grippado/eeab77b53d8ee4322edb to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerAdmin grippado@gmail.com
DocumentRoot /var/www/html/profee/
ServerName profee.dev
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SetEnv ENV development
SetEnv DB_NAME profee_development_2
SetEnv DB_USER root
SetEnv DB_PASS 1011
SetEnv DB_HOST 127.0.0.1
<Directory /var/www/html/profee>
Options Indexes FollowSymLinks MultiViews
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