diff options
author | Michael Elkins <melkins@tislabs.com> | 2010-11-11 01:40:05 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2010-11-11 01:40:05 +0000 |
commit | bae959994e1a943ab76257bfa7bb65a2efe3299a (patch) | |
tree | 73b771c91f7e36c87c3a6d0ab5019db2d554fe44 /portal-gui/README.apache | |
parent | a005b458fece9b8a3b7b86e38fb477f9b7592b65 (diff) |
move docs on configuring apache to README.apache
update README to detail use of the build.sh for installation instead of using
the configure script directly.
added USER= configuration variable to specify the user that the apache web server is running as.
make install target sets file permissions so that apache user can read/write them
adduser.py sets file permissions so that apacher user can read/write them
svn path=/portal-gui/Makefile.in; revision=3548
Diffstat (limited to 'portal-gui/README.apache')
-rw-r--r-- | portal-gui/README.apache | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/portal-gui/README.apache b/portal-gui/README.apache new file mode 100644 index 00000000..9869cd40 --- /dev/null +++ b/portal-gui/README.apache @@ -0,0 +1,26 @@ +$Id$ + +This file details how to configure apache+mod_wsgi to serve the portal-gui. + +The web interface must be deployed to work with an existing web server. +Instructions for using Django with Apache and mod_wsgi can be found at +http://docs.djangoproject.com/en/1.2/howto/deployment/modwsgi/#howto-deployment-modwsgi + +Setup +===== + +- Follow the steps in detailed in the $top/portal-gui/README file to set up the + portal-gui for the self-hosted resource handle that runs rpkid. + +- After running "make" in $top/portal-gui, there will be a file named + $top/portal-gui/apache/zmyrpki.conf. This is a configuration file for + apache which does most of the work configuring the portal-gui to run + under mod_wsgi. + + You may need to edit the paths for Django if they are installed in a + different location on your host. Note that this is only necessary if + you wish to use the Django admin web console. The portal-gui itself + will operate correctly even if this path is wrong. + + Fedora: + cp $top/portal-gui/apache/zmyrpki.conf /etc/httpd/conf.d/ |