Skip to content

Instantly share code, notes, and snippets.

@cyppan
Created October 12, 2012 11:52
Show Gist options
  • Save cyppan/3878866 to your computer and use it in GitHub Desktop.
Save cyppan/3878866 to your computer and use it in GitHub Desktop.
Apache virtual host
<VirtualHost *:80>
ServerName jobeet2.lcl
DocumentRoot /var/www/jobeet2/web
<Directory /var/www/jobeet2/web>
Options -Indexes -MultiViews +FollowSymLinks
AllowOverride None
Order allow, deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/jobeet2-error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/jobeet2-access.log combined
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment