diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-07-08 15:53:29 +0100 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2014-07-10 12:43:49 +0100 |
commit | 5ed12438107e7c2a4ede9ec6ac93b7e35959c482 (patch) | |
tree | cbbc0634d86e061fbab0039bccfa6983beda0b8a | |
parent | 36e1f108504eba2e4d56f4c9f03459809d6da8c3 (diff) |
Add upgrade notes for new shared log configuration
-rw-r--r-- | doc/CHANGES.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/CHANGES.md b/doc/CHANGES.md index 777501ca5..0032706ef 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -1,3 +1,21 @@ +## rails-3-develop + +## Highlighted Features + +## Upgrade Notes + +* rails-post-deploy no longer handles linking `APP_ROOT/log` to a log directory + outside the app. Capistrano users will find that `:symlink_configuration` now + links `APP_ROOT/log` to `SHARED_PATH/log`. Users who aleady use the + `SHARED_FILES` and `SHARED_DIRECTORIES` settings in `config/general.yml` + should add `log/` to the `SHARED_DIRECTORIES` setting. The existing mechanism + for shared directories (in `script/rails-deploy-before-down`) will create the + necessary link to `SHARED_FILES_PATH/log`. If your existing shared log + directory is not at `SHARED_FILES_PATH/log`, move the directory and re-run + `script/rails-post-deploy` to link up the new location. If you don't use + `SHARED_FILES` and `SHARED_DIRECTORIES`, alaveteli will now write it's + application logs to `APP_ROOT/log` rather than `APP_ROOT/../logs` by default. + # Version 0.18 ## Highlighted features |