'My SuiteDesk site', # 'anonymous' => 'Visitor', /** * A custom theme can be set for the off-line page. This applies when the site * is explicitly set to off-line mode through the administration page or when * the database is inactive due to an error. It can be set through the * 'maintenance_theme' key. The template file should also be copied into the * theme. It is located inside 'modules/system/maintenance-page.tpl.php'. * Note: This setting does not apply to installation and update pages. */ # 'maintenance_theme' => 'garland', /** * reverse_proxy accepts a boolean value. * * Enable this setting to determine the correct IP address of the remote client * by examining information stored in the X-Forwarded-For headers. * X-Forwarded-For headers are a standard mechanism for identifying client * systems connecting through a reverse proxy server, such as Squid or Pount. * Reverse proxy servers are often used to enhance the performance of heavily * visited sites and may also provide other site caching, security or encryption * benefits. If this Drupal installation operates behind a reverse proxy, this * setting should be enabled so that correct IP address information is captured * in Drupal's session management, logging, statistics and access management * systems; if you are unsure about this setting, do not have a reverse proxy, * or Drupal operates in a shared hosting environment, this setting should be * to disabled. */ # 'reverse_proxy' => TRUE, /** * reverse_proxy accepts an array of IP addresses. * * Each element of this array is the IP address of any of your reverse proxies. * Filling this array Drupal will trust the information stored in the * X-Forwarded-For headers only if Remote IP address is one of these, that is * the request reaches the web server from one of your reverse proxies. * Otherwise, the client could directly connect to your web server spoofing the * X-Forwarded-For headers. */ # 'reverse_proxy_addresses' => array('a.b.c.d', ...), # ); /** * String overrides. * * To override specific strings on your site with or without enabling locale * module, add an entry to this list. This functionality allows you to change a * small number of your site's default English language interface strings. * * Remove the leading hash signs to enable. */ # $conf['locale_custom_strings_en'] = array( # 'forum' => 'Discussion board', # '@count min' => '@count minutes', # ); /** * Multilingual settings. * * This is a collection of variables that can be set up for each language when * i18n is enabled. These are the basic ones for Drupal core, but you can add * your own here. */ $conf['i18n_variables'] = array( // User email variables: 'user_registration_help', 'user_mail_register_admin_created_subject', 'user_mail_register_admin_created_body', 'user_mail_register_no_approval_required_subject', 'user_mail_register_no_approval_required_body', 'user_mail_register_pending_approval_subject', 'user_mail_register_pending_approval_body', 'user_mail_password_reset_subject', 'user_mail_password_reset_body', 'user_mail_status_activated_subject', 'user_mail_status_activated_body', 'user_mail_status_blocked_subject', 'user_mail_status_blocked_body', 'user_mail_status_deleted_subject', 'user_mail_status_deleted_body', 'user_picture_guidelines', // Primary and secondary links: 'menu_primary_links_source', // Custom error module variables: 'customerror_403_title', // Print link: 'print_html_link_text', // Watcher templates: 'watcher_notifications_templates_header', 'watcher_notifications_templates_footer', 'watcher_notifications_templates_footer_anonymous_notify', 'watcher_notifications_templates_footer_confirm', 'watcher_notifications_templates_body_node', 'watcher_notifications_templates_body_cmt', 'watcher_notifications_templates_body_confirm', ); /** * Secure Pages deactivation. * * Uncomment to deactivate the secure pages SSL module. */ # $conf['securepages_enable'] = 0; /** * Advanced CSS/JS Aggregation deactivation. * * Uncomment to deactivate the advanced CSS and JS aggregation module. */ # $conf['advagg_enabled'] = 0;