From c290c4e5a25b7797eb723e122eb0d1d6f731c9a3 Mon Sep 17 00:00:00 2001 From: Antony Chazapis Date: Thu, 12 Jan 2012 13:38:37 +0200 Subject: [PATCH] Update admin guide. --- docs/source/adminguide.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/source/adminguide.rst b/docs/source/adminguide.rst index 8f6afc2..98434c9 100644 --- a/docs/source/adminguide.rst +++ b/docs/source/adminguide.rst @@ -112,6 +112,15 @@ Add in ``/etc/apache2/mods-available/wsgi.conf``:: WSGIChunkedRequest On +Make sure the data folder is writable by the web server user:: + + chown -R www-data:www-data /pithos/pithos/data + +If using an SQLite database, the same goes for the database file and the containing folder:: + + chown www-data:www-data /pithos/pithos/ + chown www-data:www-data /pithos/pithos/backend.db + Configure and run apache:: a2enmod ssl -- 1.7.10.4