Advertisement
Lansing-web-design

aegir local.settings.php

May 7th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. <?php
  2. $conf = array(
  3. 'site_name' => 'Max Camp Holt Development',
  4. 'theme_default' => 'seven',
  5. 'anonymous' => 'Visitor',
  6. /**
  7. * A custom theme can be set for the off-line page. This applies when the site
  8. * is explicitly set to off-line mode through the administration page or when
  9. * the database is inactive due to an error. It can be set through the
  10. * 'maintenance_theme' key. The template file should also be copied into the
  11. * theme. It is located inside 'modules/system/maintenance-page.tpl.php'.
  12. * Note: This setting does not apply to installation and update pages.
  13. */
  14. 'maintenance_theme' => 'omega',
  15. /**
  16. * reverse_proxy accepts a boolean value.
  17. *
  18. * Enable this setting to determine the correct IP address of the remote
  19. * client by examining information stored in the X-Forwarded-For headers.
  20. * X-Forwarded-For headers are a standard mechanism for identifying client
  21. * systems connecting through a reverse proxy server, such as Squid or
  22. * Pound. Reverse proxy servers are often used to enhance the performance
  23. * of heavily visited sites and may also provide other site caching,
  24. * security or encryption benefits. If this Drupal installation operates
  25. * behind a reverse proxy, this setting should be enabled so that correct
  26. * IP address information is captured in Drupal's session management,
  27. * logging, statistics and access management systems; if you are unsure
  28. * about this setting, do not have a reverse proxy, or Drupal operates in
  29. * a shared hosting environment, this setting should be set to disabled.
  30. */
  31. # 'reverse_proxy' => TRUE,
  32. /**
  33. * reverse_proxy accepts an array of IP addresses.
  34. *
  35. * Each element of this array is the IP address of any of your reverse
  36. * proxies. Filling this array Drupal will trust the information stored
  37. * in the X-Forwarded-For headers only if Remote IP address is one of
  38. * these, that is the request reaches the web server from one of your
  39. * reverse proxies. Otherwise, the client could directly connect to
  40. * your web server spoofing the X-Forwarded-For headers.
  41. */
  42. # 'reverse_proxy_addresses' => array('a.b.c.d', ...),
  43. # );
  44.  
  45. /**
  46. * String overrides:
  47. *
  48. * To override specific strings on your site with or without enabling locale
  49. * module, add an entry to this list. This functionality allows you to change
  50. * a small number of your site's default English language interface strings.
  51. *
  52. * Remove the leading hash signs to enable.
  53. */
  54. # $conf['locale_custom_strings_en'] = array(
  55. # 'forum' => 'Discussion board',
  56. # '@count min' => '@count minutes',
  57. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement