Created
February 16, 2015 15:02
-
-
Save topicus/65d97a4fa98197f421a3 to your computer and use it in GitHub Desktop.
Drupal simple virtual host
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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