Created
February 16, 2011 15:13
-
-
Save arjan/829532 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 *:80> | |
ServerAdmin [email protected] | |
ServerName identity.local | |
DocumentRoot /home/arjan/mm/identity/trunk/www | |
php_value memory_limit 64M | |
ErrorLog /var/log/apache2/identity-error.log | |
CustomLog /var/log/apache2/identity-access.log combined | |
#HostnameLookups Off | |
UseCanonicalName Off | |
ServerSignature On | |
SetEnv DB_DSN mysql://root:[email protected]/identity_server_db | |
<Directory "/home/arjan/mm/identity/trunk/www"> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
<IfModule mod_php5.c> | |
php_value magic_quotes_gpc 0 | |
php_value register_globals 0 | |
php_value session.auto_start 0 | |
</IfModule> | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment