diff options
Diffstat (limited to 'config/general-example')
-rw-r--r-- | config/general-example | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/config/general-example b/config/general-example index 29f29ca8d..a3d1aed2a 100644 --- a/config/general-example +++ b/config/general-example @@ -39,8 +39,8 @@ define('OPTION_BLACKHOLE_PREFIX', 'do-not-reply-to-this-address'); // used as en define('OPTION_CONTACT_EMAIL', 'admin@localhost'); define('OPTION_ADMIN_BASE_URL', '/admin/'); // Where /stylesheets sits under for admin pages. See asset_host in -// config/environment.rb. Can be full domain or relative path. -define('OPTION_ADMIN_PUBLIC_URL', '/'); +// config/environment.rb. Can be full domain or relative path (not an absolute path beginning with /). +define('OPTION_ADMIN_PUBLIC_URL', ''); // Secret key for signing cookie_store sessions define('OPTION_COOKIE_STORE_SESSION_SECRET', 'your secret key here, make it long and random'); @@ -55,5 +55,15 @@ define('OPTION_RECAPTCHA_PUBLIC_KEY', 'x'); define('OPTION_RECAPTCHA_PRIVATE_KEY', 'x'); // Locales we wish to support in this app -define('OPTION_AVAILABLE_LOCALES', 'en es') +define('OPTION_AVAILABLE_LOCALES', 'en es'); + +// example searches for the home page, semicolon delimited +define('OPTION_FRONTPAGE_SEARCH_EXAMPLES', 'Geraldine Quango; Department for Humpadinking'); + +// example public bodies for the home page, semicolon delimited - short_names +define('OPTION_FRONTPAGE_PUBLICBODY_EXAMPLES', 'tgq'); + +// URL of theme to install +define('OPTION_THEME_URL', 'git://github.com/mysociety/whatdotheyknow-theme.git'); + ?> |