diff options
Diffstat (limited to 'config/general.yml-example')
-rw-r--r-- | config/general.yml-example | 33 |
1 files changed, 28 insertions, 5 deletions
diff --git a/config/general.yml-example b/config/general.yml-example index b8c805533..bd835494b 100644 --- a/config/general.yml-example +++ b/config/general.yml-example @@ -172,11 +172,6 @@ VARNISH_HOST: localhost # Adding a value here will enable Google Analytics on all non-admin pages for non-admin users. GA_CODE: '' -# We need to add the WDTK survey variables here, or else the deployment -# system will cry. -SURVEY_SECRET: '' -SURVEY_URL: '' - # If you want to override *all* the public body request emails with your own # email so that request emails that would normally go to the public body # go to you, then uncomment below and fill in your email. @@ -219,3 +214,31 @@ USE_MAILCATCHER_IN_DEVELOPMENT: true # only have an effect in environments where # config.action_controller.perform_caching is set to true CACHE_FRAGMENTS: true + +# In some deployments of Alaveteli you may wish to install each newly +# deployed version alongside the previous ones, in which case certain +# files and resources should be shared between these installations: +# for example, the 'files' directory, the 'cache' directory and the +# generated graphs such as 'public/foi-live-creation.png'. If you're +# installing Alaveteli in such a setup then set SHARED_FILES_PATH to +# the directory you're keeping these files under. Otherwise, leave it +# blank. +SHARED_FILES_PATH: '' + +# If you have SHARED_FILES_PATH set, then these options list the files +# and directories that are shared; i.e. those that the deploy scripts +# should create symlinks to from the repository. +SHARED_FILES: + - config/database.yml + - config/general.yml + - config/rails_env.rb + - config/newrelic.yml + - config/httpd.conf + - public/foi-live-creation.png + - public/foi-user-use.png + - config/aliases +SHARED_DIRECTORIES: + - files/ + - cache/ + - lib/acts_as_xapian/xapiandbs/ + - vendor/bundle |