Changes between Version 8 and Version 9 of OnyxDeployment


Ignore:
Timestamp:
01/04/11 22:05:52 (13 years ago)
Author:
jeff.lusted
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OnyxDeployment

    v8 v9  
    2929The version 1.0 artifact is located at http://mvn.briccs.org.uk/org/bru/briccs/briccs-pmi-lookup/production-1.0/briccs-pmi-lookup-production-1.0.war
    3030
     31The procedure should then follow this logical structure. The details/technique are open for discussion. Notes follow.
     32
    3133   1. Unzip war file into $BRICCS_WEBAPPS/briccs-pmi-lookup-production-1.0
    3234   1. Locate config file at $BRICCS_WEBAPPS/briccs-pmi-lookup-production-1.0/WEB-INF/classes/pmi-lookup-config.properties
     
    3537   1. Place a context file for deployment within the tomcat tree: $CATALINA_HOME/webapps/patient-lookup.xml
    3638   1. Deploy within tomcat using manager commands of some sort.
     39
     40==== PMI Context File ====
     41The context file can be used to limit access to local host, so rendering the webapp quite secure. It should read something like:
     42{{{
     43Context path="/patient-lookup" docBase="/usr/local/webapps/briccs-pmi-lookup-production-1.0">
     44    <Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="127.0.0.1|192.168.2.4|0:0:0:0:0:0:0:1" deny=""/>
     45</Context>
     46}}}
     47The 192.168.2.4 should be changed (temporarilly?) to some suitably secure workstation for testing (eg: Nick's workstation)