~termie/pantheon/fabric-init-fabric

« back to all changes in this revision

Viewing changes to fabric/templates/pantheon.settings.php

  • Committer: Aaron Levy
  • Date: 2010-07-22 20:19:37 UTC
  • Revision ID: aaron@chapterthree.com-20100722201937-1ulk6j1bk1klrdxm
site_import script cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##########################
 
2
#
 
3
# Mercury Settings
 
4
#
 
5
# Alter With Caution :)
 
6
#
 
7
##########################
 
8
$db_url = 'mysqli://${db_username}:${db_password}@localhost/${db_name}';
 
9
 
 
10
# Varnish reverse proxy on localhost
 
11
$conf['reverse_proxy'] = TRUE;
 
12
$conf['reverse_proxy_addresses'] = array('127.0.0.1');
 
13
 
 
14
# Memcached configuration
 
15
$conf['cache_inc'] = './sites/all/modules/memcache/memcache.inc';
 
16
$conf['memcache_servers'] = array(
 
17
         '127.0.0.1:11211' => 'default',
 
18
         );
 
19
$conf['memcache_bins'] = array(
 
20
          'cache'        => 'default',
 
21
          );
 
22
# Key Prefix: edit this for multisite use.
 
23
$conf['memcache_key_prefix'] = 'default';
 
24
 
 
25
### END Mercury settings ###