tinycm view tools/serv.sh @ rev 48

Bunch of small fixes and improvments
author Christophe Lincoln <pankso@slitaz.org>
date Sun Jan 19 15:53:39 2014 +0100 (2014-01-19)
parents 9d0f7be12384
children
line source
1 #!/bin/sh
2 #
3 # Serve TinyCM via Busybox HTTPd
4 #
6 port=8084
7 cd tools 2/dev/null || continue
9 echo "Starting server on port: $port"
10 echo "URL: http://localhost:$port/"
11 httpd -f -u www:www -p $port -c httpd.conf
13 exit 0