Pre-installation
These tasks cover the download and deployment of the Portal Server, and should be performed prior to any new installation or upgrade.
-
Download Portal Server per instructions received per email.
-
Transfer the downloaded file to your webserver.
-
Extract the release. The extraction process should create a new directory
webserver
, in the remainder of this document this will be referred to as the<INSTALL_ROOT>
. -
The
<INSTALL_ROOT>/public
directory is the root of the web application. The other directories at this level only need to be accessed by PHP itself and should not be directly served by the webserver. -
All routes that do not refer to an existing file or directory in or under the
<INSTALL_ROOT>/public/
directory need to be routed through<INSTALL_ROOT>/public/index.php
. A sample nginx configuration and a sample (apache).htaccess
file are included as appendices. These are starting points, the same routing result can be achieved in different ways. -
Documentation can be found under
<INSTALL_ROOT>/public/doc
. Indexindex.php
needs to be served at this top level. It is advisable to serveindex.html
for sub directories. This can be accomplished in your webserver configuration or by means of.htaccess
file(s).