tinycm annotate tools/serv.sh @ rev 26

remove the README function: do better
author Christophe Lincoln <pankso@slitaz.org>
date Sun Jan 05 23:18:19 2014 +0000 (2014-01-05)
parents fa494a9879e3
children c4a472d0a45e
rev   line source
pankso@3 1 #!/bin/sh
pankso@3 2 #
paul@8 3 # Serve TinyCM via Busybox HTTPd
pankso@3 4 #
pankso@3 5
pankso@3 6 port=8084
pankso@3 7
pankso@3 8 echo "Starting server on port: $port"
pankso@3 9 echo "URL: http://localhost:$port/"
pankso@3 10 httpd -f -u www:www -p $port -c httpd.conf
pankso@3 11
pankso@3 12 exit 0