Skip to content

Instantly share code, notes, and snippets.

@topicus
Created February 16, 2015 15:02
Show Gist options
  • Select an option

  • Save topicus/65d97a4fa98197f421a3 to your computer and use it in GitHub Desktop.

Select an option

Save topicus/65d97a4fa98197f421a3 to your computer and use it in GitHub Desktop.
Drupal simple virtual host
<VirtualHost *:80>
DocumentRoot "path_to_drupal"
ServerName dkan
ErrorLog "/private/var/log/apache2/any_log_file_name"
<Directory "path_to_drupalt">
Options Includes FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
Allow from 127.0.0.1
Require all granted
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment