From ddd94bdc5530537c7635557487e97251953ca9b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 9 Apr 2009 12:53:50 +0000 Subject: [PATCH] installation notes --- INSTALL | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 INSTALL diff --git a/INSTALL b/INSTALL new file mode 100644 index 000000000..041c07c0b --- /dev/null +++ b/INSTALL @@ -0,0 +1,46 @@ +w.c.s. - Installation Instructions +================================== + +Prerequisites +------------- + +- Python 2.5 +- Quixote 2.5 +- Lasso 2.2 for Liberty/SAML support + + +Installation +------------ + +w.c.s. uses the standard distutils Python package; just run:: + + python setup.py install + +and you're done. + + +Configuration +------------- + +w.c.s. has been tested with Quixote configured through SCGI with Apache and 2 +The recommended configuration is to use SCGI version 1.8 or later (as it has +the SCGIMount directive). + +SCGI usage requires an additional server to run, 'wcsctl.py start', the Debian +package installs a init.d script automatically. + + + ServerAdmin webmaster@example.com + ServerName www.example.com + DocumentRoot /usr/share/wcs/web/ + Alias /qo/ /usr/share/wcs/qommon/ + + SCGIMount / 127.0.0.1:3001 + + SCGIHandler off + + + CustomLog /var/log/apache2/wcs-access.log combined + ErrorLog /var/log/apache2/wcs-error.log + +