Example index.html file.  This would go in the root webserver directory.  Be sure to update the path for the  to match the path of each of the modules.
{{{
Landmarks
landmarks
This is designed to use LMRK_DISPLAY1.pgm to aid alignment in lithos.  You click on a key
feature, then for all the other images, you click and drag the feature to the red dot.
The text will tell you the x and y to type into lithos, option 1, 1, \
You need to convert the pgm file into a jpg and place it in the server path
convert LMRK_DISPLAY.pgm /Library/WebServer/Documents/data/landmarks.jpg
#!/bin/bash
while [ 1 ]
do
        convert LMRK_DISPLAY1.pgm /Library/WebServer/Documents/data/landmarks.jpg
        convert LMRK_DISPLAY1.pgm /Library/WebServer/Documents/data/autoregister.jpg
        convert TEMPFILE.pgm /Library/WebServer/Documents/data/register.jpg
        sleep 5
done