123456789101112131415161718192021 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- $config['site']['name'] = 'Tortuga';
- $config['site']['server'] = 'localhost';
- $config['site']['path'] = 'tortuga';
- $config['site']['theme'] = 'neo-quitter';
- $config['site']['ssl'] = 'never';
- $config['db']['database'] = 'mysqli://root:123@localhost/tortuga';
- $config['db']['type'] = 'mysql';
- // Uncomment below for better performance. Just remember you must run
- // php scripts/checkschema.php whenever your enabled plugins change!
- //$config['db']['schemacheck'] = 'script';
- $config['site']['profile'] = 'public';
|