diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-02-21 11:13:37 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-02-21 11:13:37 +0000 |
commit | 95ba220b79e272407734d7cf25db9d50bfc2c3c3 (patch) | |
tree | 51a2025577a5086f8d203a8deda81da40e7ac1d4 /doc | |
parent | 6b770fa70c87a8239feafb8f8db2de84a7bc6cf9 (diff) | |
download | redmine-95ba220b79e272407734d7cf25db9d50bfc2c3c3.tar.gz redmine-95ba220b79e272407734d7cf25db9d50bfc2c3c3.zip |
Adds rake config/initializers/session_store.rb to the install doc.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2496 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'doc')
-rw-r--r-- | doc/INSTALL | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/doc/INSTALL b/doc/INSTALL index 13502f8d0..a97cadaa7 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -29,8 +29,13 @@ Optional: 4. Create the database structure. Under the application main directory: rake db:migrate RAILS_ENV="production" It will create tables and an administrator account. + +5. Generate a session store secret + Redmine stores session data in cookies by default, which requires + a secret to be generated. Run: + rake config/initializers/session_store.rb -5. Setting up permissions +6. Setting up permissions The user who runs Redmine must have write permission on the following subdirectories: files, log, tmp (create the last one if not present). @@ -39,13 +44,13 @@ Optional: sudo chown -R redmine:redmine files log tmp sudo chmod -R 755 files log tmp -6. Test the installation by running WEBrick web server: +7. Test the installation by running WEBrick web server: ruby script/server -e production Once WEBrick has started, point your browser to http://localhost:3000/ You should now see the application welcome page -7. Use default administrator account to log in: +8. Use default administrator account to log in: login: admin password: admin |