Skip to content

Instantly share code, notes, and snippets.

@ringmaster
Created September 17, 2013 18:57
Show Gist options
  • Save ringmaster/6599047 to your computer and use it in GitHub Desktop.
Save ringmaster/6599047 to your computer and use it in GitHub Desktop.
<?php
if(PHP_OS == 'WINNT') {
$CONFIG = array (
'datadirectory' => 'D:\owen\Documents\phpstorm\oc2\data',
'dbhost' => 'home.lise',
// Extra SSL options to be used for configuration
'openssl' => array(
'config' => 'C:\Program Files (x86)\iis express\PHP\v5.4\extras\openssl.cnf',
),
);
}
else {
$CONFIG = array (
'datadirectory' => '/var/www/oc2.lise/htdocs/data',
'dbhost' => 'localhost',
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment