Changes between Version 8 and Version 9 of OnyxDeployment
- Timestamp:
- 01/04/11 22:05:52 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OnyxDeployment
v8 v9 29 29 The 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 30 30 31 The procedure should then follow this logical structure. The details/technique are open for discussion. Notes follow. 32 31 33 1. Unzip war file into $BRICCS_WEBAPPS/briccs-pmi-lookup-production-1.0 32 34 1. Locate config file at $BRICCS_WEBAPPS/briccs-pmi-lookup-production-1.0/WEB-INF/classes/pmi-lookup-config.properties … … 35 37 1. Place a context file for deployment within the tomcat tree: $CATALINA_HOME/webapps/patient-lookup.xml 36 38 1. Deploy within tomcat using manager commands of some sort. 39 40 ==== PMI Context File ==== 41 The context file can be used to limit access to local host, so rendering the webapp quite secure. It should read something like: 42 {{{ 43 Context 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 }}} 47 The 192.168.2.4 should be changed (temporarilly?) to some suitably secure workstation for testing (eg: Nick's workstation)