Skip to content

Instantly share code, notes, and snippets.

@arjan
Created February 16, 2011 15:13
Show Gist options
  • Save arjan/829532 to your computer and use it in GitHub Desktop.
Save arjan/829532 to your computer and use it in GitHub Desktop.
<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