Created
July 14, 2014 13:14
-
-
Save max107/4b2068269ec234cafeaa to your computer and use it in GitHub Desktop.
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 127.0.0.1:81> | |
| DocumentRoot "/absolute/path/to/project/www" | |
| DirectoryIndex index.php | |
| ServerAdmin [email protected] | |
| ServerAlias test.dev | |
| ErrorLog "/absolute/path/to/project/logs/apache-error.log" | |
| CustomLog "/absolute/path/to/project/logs/apache-access.log" common | |
| <Directory "/absolute/path/to/project/www"> | |
| Options +ExecCGI FollowSymLinks +SymLinksIfOwnerMatch | |
| AllowOverride All | |
| Allow from all | |
| </Directory> | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment