source: other-projects/nz-flag-design/trunk/INSTALL.sh@ 29631

Last change on this file since 29631 was 29614, checked in by davidb, 9 years ago

Extra check that helps indicate if UNZIP.sh needs to be run

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1#!/bin/bash
2
3if [ ! -d main-form/images ] ; then
4 echo "Error: Unable to find 'main-form/images'. Have you run UNZIP.sh?" >2
5 exit
6fi
7
8config_file="nz-flag-design.xml"
9
10echo ""
11echo "****"
12echo "* 1. Making 'render-3d/images/' world-writable to ensure web server can write to it"
13echo "* => chmod a+rwx render-3d/images"
14echo "* => chmod a+rw render-3d/images/*.png"
15echo "****"
16chmod a+rwx render-3d/images/
17chmod a+rw render-3d/images/*.png
18
19echo "****"
20echo "* 2. Creating Tomcat config file: $config_file"
21echo "****"
22
23
24echo "<Context path=\"/nz-flag-design\"" > "$config_file"
25echo " useHttpOnly=\"false\"" >> "$config_file"
26echo " docBase=\""`pwd`"\"" >> "$config_file"
27echo " debug=\"1\" reloadable=\"true\"" >> "$config_file"
28echo " allowLinking=\"true\">" >> "$config_file"
29echo " <Manager pathname=\"SESSIONS.ser\" />" >> "$config_file"
30echo "</Context>" >> "$config_file"
31
32#echo ""
33echo "+++ ... Done"
34#echo ""
35
36echo "****"
37echo "* 3. Now copy:"
38echo "* $config_file"
39echo "* to:"
40echo "* <tomcat-home>/conf/Catalina/localhost/$config_file"
41echo "****"
42
43
Note: See TracBrowser for help on using the repository browser.